CMakeLists.txt 321 B

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