mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
20 lines
323 B
CMake
20 lines
323 B
CMake
set(ESMTOOL
|
|
esmtool.cpp
|
|
)
|
|
source_group(apps\\esmtool FILES ${ESMTOOL})
|
|
|
|
# Main executable
|
|
add_executable(esmtool
|
|
${ESMTOOL}
|
|
)
|
|
|
|
target_link_libraries(esmtool
|
|
${Boost_LIBRARIES}
|
|
components
|
|
)
|
|
|
|
#if (APPLE)
|
|
# find_library(CARBON_FRAMEWORK Carbon)
|
|
# target_link_libraries(openmw ${CARBON_FRAMEWORK})
|
|
#endif (APPLE)
|