CMakeLists.txt 389 B

12345678910111213141516171819
  1. add_library(rmlui_tests_common STATIC
  2. Mocks.h
  3. TestsInterface.cpp
  4. TestsInterface.h
  5. TestsShell.cpp
  6. TestsShell.h
  7. TypesToString.h
  8. )
  9. set_common_target_options(rmlui_tests_common)
  10. target_include_directories(rmlui_tests_common INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}")
  11. target_link_libraries(rmlui_tests_common PUBLIC
  12. rmlui_core
  13. rmlui_shell
  14. doctest::doctest
  15. trompeloeil::trompeloeil
  16. )