ULRE/example/2dVector/CMakeLists.txt

16 lines
435 B
CMake
Raw Normal View History

2020-09-30 14:21:24 +08:00
macro(CreateProject name)
add_executable(${name} ${ARGN})
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/2dVector")
endmacro()
CreateProject(00.line line.cpp)
2024-07-30 00:11:04 +08:00
CreateProject(01.LerpLine LerpLine.cpp)
CreateProject(02.roundbox roundbox.cpp)