Computergraphik_Hopp/Code/CMakeLists.txt

11 lines
220 B
CMake
Raw Normal View History

2018-10-17 12:50:35 +02:00
cmake_minimum_required (VERSION 3.8)
2018-10-17 15:08:44 +02:00
if (CMAKE_COMPILER_IS_GNU)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra")
2018-10-17 12:50:35 +02:00
endif()
find_package(OpenGL REQUIRED)
find_package(GLUT REQUIRED)
add_subdirectory(hello_world)