mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 12:41:54 +00:00
12 lines
211 B
CMake
12 lines
211 B
CMake
|
function(glmCreateBenchGTC NAME)
|
||
|
set(SAMPLE_NAME bench-${NAME})
|
||
|
|
||
|
add_executable(${SAMPLE_NAME} ${NAME}.cpp)
|
||
|
endfunction(glmCreateBenchGTC)
|
||
|
|
||
|
add_subdirectory(core)
|
||
|
add_subdirectory(gtc)
|
||
|
add_subdirectory(gtx)
|
||
|
|
||
|
|