CMakeLists.txt 426 B

12345678910111213141516171819202122232425
  1. set(TARGET_NAME "rmlui_visual_tests")
  2. add_executable(${TARGET_NAME} WIN32
  3. XmlNodeHandlers.h
  4. XmlNodeHandlers.cpp
  5. TestViewer.h
  6. TestViewer.cpp
  7. TestSuite.h
  8. TestConfig.h
  9. TestConfig.cpp
  10. TestNavigator.h
  11. main.cpp
  12. CaptureScreen.h
  13. TestNavigator.cpp
  14. CaptureScreen.cpp
  15. )
  16. set_common_target_options(${TARGET_NAME})
  17. target_link_libraries(${TARGET_NAME} PRIVATE
  18. rmlui_tests_common
  19. rmlui_core
  20. rmlui_shell
  21. lodepng::lodepng
  22. )