1
0
rwu_particles_informatikpro.../CMakeLists.txt
2020-03-31 15:09:01 +02:00

14 lines
329 B
CMake

cmake_minimum_required(VERSION 3.15)
project(Informatikprojekt C)
set(CMAKE_C_STANDARD 11)
add_executable(Informatikprojekt main.c particlesystem.h particlesystem.c init.h)
# GLFW
add_subdirectory(./glfw-3.3)
include_directories(./glfw-3.3/include)
target_link_libraries(Informatikprojekt -lOpenGL32 glfw ${GLFW_LIBRARIES})