mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
34513cf16b
Added support for code coverage checking with gcov and unittests with Google C++ unittest and GMock frameworks. Signed-off-by: Lukasz Gromanowski <lgromanowski@gmail.com>
25 lines
431 B
CMake
25 lines
431 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)
|
|
|
|
if (BUILD_WITH_CODE_COVERAGE)
|
|
add_definitions (--coverage)
|
|
target_link_libraries(esmtool gcov)
|
|
endif()
|