2019-05-05 00:25:24 +08:00
|
|
|
|
macro(CreateProject name main_file)
|
|
|
|
|
add_executable(${name} ${main_file}.cpp)
|
|
|
|
|
target_link_libraries(${name} ${ULRE})
|
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
|
|
CreateProject(0.triangle main)
|
2019-05-06 12:00:03 +08:00
|
|
|
|
CreateProject(1.indices_rect indices_rect)
|