CMakeLists.txt 284 B

123456789101112
  1. set(TUTORIAL_NAME "template")
  2. set(TARGET_NAME "${RMLUI_TUTORIAL_PREFIX}${TUTORIAL_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})