CMakeLists.txt
4ad2b510
 ## CMake
 cmake_minimum_required(VERSION 3.14)
 if(NOT CMAKE_BUILD_TYPE)
     set(CMAKE_BUILD_TYPE Debug)
 endif()
 
 ## Project
 project(glvisnormals
     VERSION 1.0.0
     LANGUAGES
 )
 
 ## Main target
 add_custom_target(${PROJECT_NAME})
 
 ## C++
 include(cxx.cmake)
 cxx()