CMakeLists.txt 328 B

1234567891011121314
  1. set(SAMPLE_NAME "custom_log")
  2. set(TARGET_NAME "${RMLUI_SAMPLE_PREFIX}${SAMPLE_NAME}")
  3. add_executable(${TARGET_NAME} WIN32
  4. src/main.cpp
  5. src/SystemInterface.cpp
  6. src/SystemInterface.h
  7. )
  8. set_common_target_options(${TARGET_NAME})
  9. target_link_libraries(${TARGET_NAME} PRIVATE rmlui_shell)
  10. install_sample_target(${TARGET_NAME})