mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 17:19:56 +00:00
23 lines
389 B
CMake
23 lines
389 B
CMake
set(ESMTOOL
|
|
esmtool_cmd.c
|
|
esmtool_cmd.h
|
|
esmtool.cpp
|
|
)
|
|
source_group(apps\\esmtool FILES ${ESMTOOL})
|
|
|
|
# Main executable
|
|
add_executable(esmtool
|
|
${ESMTOOL}
|
|
${MISC} ${MISC_HEADER}
|
|
${TO_UTF8}
|
|
${ESM}
|
|
)
|
|
|
|
target_link_libraries(esmtool
|
|
${Boost_LIBRARIES}
|
|
)
|
|
|
|
#if (APPLE)
|
|
# find_library(CARBON_FRAMEWORK Carbon)
|
|
# target_link_libraries(openmw ${CARBON_FRAMEWORK})
|
|
#endif (APPLE)
|