add 2d AA Line examples

This commit is contained in:
2020-09-30 14:21:24 +08:00
parent 5844004489
commit 24474df151
13 changed files with 195 additions and 25 deletions

View File

@@ -0,0 +1,12 @@
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)