CMakeLists.txt 279 B

123456789101112
  1. set(SAMPLE_NAME "benchmark")
  2. set(TARGET_NAME "${RMLUI_SAMPLE_PREFIX}${SAMPLE_NAME}")
  3. add_executable(${TARGET_NAME} WIN32
  4. src/main.cpp
  5. )
  6. set_common_target_options(${TARGET_NAME})
  7. target_link_libraries(${TARGET_NAME} PRIVATE rmlui_shell)
  8. install_sample_target(${TARGET_NAME})