ULRE/example/GUI/CMakeLists.txt

14 lines
478 B
CMake
Raw Permalink Normal View History

2020-09-30 14:21:24 +08:00
macro(CreateProject name)
2020-10-26 21:51:51 +08:00
add_executable(${name} ${ARGN} GUIAppFramework.h)
2020-09-30 14:21:24 +08:00
target_link_libraries(${name} ${ULRE})
IF(WIN32)
set_target_properties(${name} PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY ${ULRE_RUNTIME_PATH})
ENDIF()
set_property(TARGET ${name} PROPERTY FOLDER "ULRE/Example/GUI")
endmacro()
2020-11-09 19:00:58 +08:00
CreateProject(00.control_point_2d control_point_2d.cpp)
CreateProject(01.align_test align_test.cpp)
2024-07-26 03:27:32 +08:00
CreateProject(02.TextDrawTest DrawText.cpp)