CMakeLists.txt 316 B

1234567891011121314
  1. set(TUTORIAL_NAME "drag")
  2. set(TARGET_NAME "${RMLUI_TUTORIAL_PREFIX}${TUTORIAL_NAME}")
  3. add_executable(${TARGET_NAME} WIN32
  4. src/Inventory.cpp
  5. src/Inventory.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})