mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 17:19:56 +00:00
20 lines
327 B
Text
20 lines
327 B
Text
|
set(NIFTEST
|
||
|
niftest.cpp
|
||
|
)
|
||
|
source_group(components\\nif\\tests FILES ${NIFTEST})
|
||
|
|
||
|
# Main executable
|
||
|
add_executable(niftest
|
||
|
${NIFTEST}
|
||
|
)
|
||
|
|
||
|
target_link_libraries(niftest
|
||
|
${Boost_FILESYSTEM_LIBRARY}
|
||
|
components
|
||
|
)
|
||
|
|
||
|
if (BUILD_WITH_CODE_COVERAGE)
|
||
|
add_definitions (--coverage)
|
||
|
target_link_libraries(niftest gcov)
|
||
|
endif()
|