You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
334 B
CMake
20 lines
334 B
CMake
set(NIFTEST
|
|
niftest.cpp
|
|
)
|
|
source_group(components\\nif\\tests FILES ${NIFTEST})
|
|
|
|
# Main executable
|
|
openmw_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()
|