mstch/test/CMakeLists.txt

57 lines
2.1 KiB
CMake
Raw Normal View History

2015-04-12 21:25:16 +08:00
include_directories(
2015-04-23 18:54:08 +08:00
${CMAKE_SOURCE_DIR}/include
2015-10-10 19:36:14 +08:00
${CMAKE_SOURCE_DIR}/vendor/Catch/single_include
2015-10-12 06:24:25 +08:00
${CMAKE_SOURCE_DIR}/vendor/json.hpp/include)
2015-04-12 21:25:16 +08:00
file(GLOB data_files RELATIVE
2015-04-23 18:54:08 +08:00
"${CMAKE_SOURCE_DIR}/test/data"
"${CMAKE_SOURCE_DIR}/test/data/*.hpp")
2015-04-12 21:25:16 +08:00
foreach(data_file ${data_files})
2015-04-23 18:54:08 +08:00
string(REGEX REPLACE "\\.hpp" "" test_name "${data_file}")
list(APPEND tests "${test_name}")
2015-04-12 21:25:16 +08:00
endforeach(data_file)
file(GLOB string_files RELATIVE
2015-04-23 18:54:08 +08:00
"${CMAKE_SOURCE_DIR}/test/data"
"${CMAKE_SOURCE_DIR}/test/data/*.mustache"
"${CMAKE_SOURCE_DIR}/test/data/*.txt"
"${CMAKE_SOURCE_DIR}/test/data/*.partial")
2015-04-12 21:25:16 +08:00
foreach(string_file ${string_files})
2015-10-12 06:24:25 +08:00
list(APPEND genargs "-i${string_file}")
2015-04-12 21:25:16 +08:00
endforeach(string_file)
add_custom_command(
2015-04-23 18:54:08 +08:00
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/test_data.hpp
2015-10-01 17:49:40 +08:00
COMMAND headerize --output ${CMAKE_CURRENT_BINARY_DIR}/test_data.hpp --namespace mstchtest ${genargs}
2015-04-23 18:54:08 +08:00
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/test/data/)
2015-04-12 21:35:13 +08:00
set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/test_data.hpp PROPERTIES GENERATED TRUE)
add_custom_target(test_data_hpp DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/test_data.hpp)
2015-04-12 21:25:16 +08:00
2015-05-04 20:29:15 +08:00
file(GLOB specs_files RELATIVE
2015-05-05 15:03:27 +08:00
"${CMAKE_SOURCE_DIR}/vendor/spec/specs"
"${CMAKE_SOURCE_DIR}/vendor/spec/specs/*.json")
2015-05-04 20:29:15 +08:00
foreach(specs_file ${specs_files})
2015-10-12 06:24:25 +08:00
list(APPEND specsargs "-i${specs_file}")
2015-05-04 20:29:15 +08:00
string(REGEX REPLACE "\\.json" "" test_name "${specs_file}")
2015-10-01 18:49:27 +08:00
string(REGEX REPLACE "~" "" test_name "${test_name}")
2015-05-04 20:29:15 +08:00
list(APPEND tests "specs_${test_name}")
endforeach(specs_file)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/specs_data.hpp
2015-10-01 17:49:40 +08:00
COMMAND headerize --output ${CMAKE_CURRENT_BINARY_DIR}/specs_data.hpp --namespace mstchtest ${specsargs}
2015-05-05 15:03:27 +08:00
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/vendor/spec/specs/)
2015-05-04 20:29:15 +08:00
set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/specs_data.hpp PROPERTIES GENERATED TRUE)
add_custom_target(specs_data_hpp DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/specs_data.hpp)
2015-04-12 21:25:16 +08:00
add_executable(mstch_test test_main.cpp)
target_link_libraries(mstch_test mstch)
2015-05-04 20:29:15 +08:00
add_dependencies(mstch_test test_data_hpp specs_data_hpp)
2015-04-12 22:13:21 +08:00
foreach(test ${tests})
2015-04-23 18:54:08 +08:00
add_test(NAME ${test} COMMAND mstch_test ${test})
2015-04-12 22:13:21 +08:00
endforeach(test)