CMakeLists.txt 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. find_package(Boost 1.54 REQUIRED)
  2. include_directories(
  3. ${CMAKE_SOURCE_DIR}/include
  4. ${CMAKE_SOURCE_DIR}/vendor/Catch/single_include
  5. ${CMAKE_SOURCE_DIR}/vendor/rapidjson/include
  6. ${Boost_INCLUDE_DIR})
  7. file(GLOB data_files RELATIVE
  8. "${CMAKE_SOURCE_DIR}/test/data"
  9. "${CMAKE_SOURCE_DIR}/test/data/*.hpp")
  10. foreach(data_file ${data_files})
  11. string(REGEX REPLACE "\\.hpp" "" test_name "${data_file}")
  12. list(APPEND tests "${test_name}")
  13. endforeach(data_file)
  14. file(GLOB string_files RELATIVE
  15. "${CMAKE_SOURCE_DIR}/test/data"
  16. "${CMAKE_SOURCE_DIR}/test/data/*.mustache"
  17. "${CMAKE_SOURCE_DIR}/test/data/*.txt"
  18. "${CMAKE_SOURCE_DIR}/test/data/*.partial")
  19. foreach(string_file ${string_files})
  20. list(APPEND genargs "-i${string_file}")
  21. endforeach(string_file)
  22. add_custom_command(
  23. OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/test_data.hpp
  24. COMMAND headerize --output ${CMAKE_CURRENT_BINARY_DIR}/test_data.hpp --namespace mstchtest ${genargs}
  25. WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/test/data/)
  26. set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/test_data.hpp PROPERTIES GENERATED TRUE)
  27. add_custom_target(test_data_hpp DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/test_data.hpp)
  28. file(GLOB specs_files RELATIVE
  29. "${CMAKE_SOURCE_DIR}/vendor/spec/specs"
  30. "${CMAKE_SOURCE_DIR}/vendor/spec/specs/*.json")
  31. foreach(specs_file ${specs_files})
  32. list(APPEND specsargs "-i${specs_file}")
  33. string(REGEX REPLACE "\\.json" "" test_name "${specs_file}")
  34. string(REGEX REPLACE "~" "" test_name "${test_name}")
  35. list(APPEND tests "specs_${test_name}")
  36. endforeach(specs_file)
  37. add_custom_command(
  38. OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/specs_data.hpp
  39. COMMAND headerize --output ${CMAKE_CURRENT_BINARY_DIR}/specs_data.hpp --namespace mstchtest ${specsargs}
  40. WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/vendor/spec/specs/)
  41. set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/specs_data.hpp PROPERTIES GENERATED TRUE)
  42. add_custom_target(specs_data_hpp DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/specs_data.hpp)
  43. add_executable(mstch_test test_main.cpp)
  44. target_link_libraries(mstch_test mstch)
  45. add_dependencies(mstch_test test_data_hpp specs_data_hpp)
  46. foreach(test ${tests})
  47. add_test(NAME ${test} COMMAND mstch_test ${test})
  48. endforeach(test)