You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
|
project(GlmTest) |
|
cmake_minimum_required(VERSION 3.0.0) |
|
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) |
|
conan_basic_setup() |
|
|
|
if(MSVC) |
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHsc") |
|
endif(MSVC) |
|
|
|
add_executable(testGlm main.cpp) |
|
|
|
|
|
|