ULRE/example/GUI/CMakeLists.txt

13 lines
379 B
CMake
Raw 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()
CreateProject(00.align_test align_test.cpp)