2013-03-04 23:45:25 +00:00
|
|
|
set(BSATOOL
|
|
|
|
bsatool.cpp
|
|
|
|
)
|
|
|
|
source_group(apps\\bsatool FILES ${BSATOOL})
|
|
|
|
|
|
|
|
# Main executable
|
2017-09-08 21:17:42 +00:00
|
|
|
openmw_add_executable(bsatool
|
2013-03-04 23:45:25 +00:00
|
|
|
${BSATOOL}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(bsatool
|
2015-06-11 21:49:27 +00:00
|
|
|
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
|
|
|
${Boost_FILESYSTEM_LIBRARY}
|
2013-03-04 23:45:25 +00:00
|
|
|
components
|
|
|
|
)
|
|
|
|
|
|
|
|
if (BUILD_WITH_CODE_COVERAGE)
|
|
|
|
add_definitions (--coverage)
|
|
|
|
target_link_libraries(bsatool gcov)
|
2017-09-08 21:20:04 +00:00
|
|
|
endif()
|