mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
24 lines
543 B
CMake
24 lines
543 B
CMake
project(xlnt.test)
|
|
|
|
include_directories(../../../include)
|
|
include_directories(../../../third-party/pugixml/src)
|
|
include_directories(../../../third-party/cxxtest)
|
|
|
|
add_executable(xlnt.test ../../../tests/runner-autogen.cpp)
|
|
|
|
target_link_libraries(xlnt.test xlnt)
|
|
|
|
add_custom_target (generate
|
|
COMMAND ../../../generate-tests.sh
|
|
COMMENT "Generating test runner tests/runner-autogen.cpp"
|
|
)
|
|
|
|
add_dependencies(xlnt.test generate)
|
|
|
|
add_custom_command(
|
|
TARGET xlnt.test
|
|
POST_BUILD
|
|
COMMAND ../../../../bin/xlnt.test
|
|
VERBATIM
|
|
)
|