1
0
rwu_particles_informatikpro.../CMakeLists.txt

11 lines
319 B
CMake
Raw Normal View History

2019-12-16 18:12:24 +00:00
cmake_minimum_required(VERSION 3.15)
project(Informatikprojekt C)
set(CMAKE_C_STANDARD 11)
2019-12-18 17:18:55 +00:00
add_executable(Informatikprojekt main.c particlesystem.h particlesystem.c)
# GLFW
add_subdirectory(./glfw-3.3)
include_directories(./glfw-3.3/include)
target_link_libraries(Informatikprojekt -lOpenGL32 glfw ${GLFW_LIBRARIES})