-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
43 lines (40 loc) · 973 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
cmake_minimum_required(VERSION 3.3)
project(3)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES
GL/freeglut.h
GL/freeglut_ext.h
GL/freeglut_std.h
vecmath/include/Matrix2f.h
vecmath/include/Matrix3f.h
vecmath/include/Matrix4f.h
vecmath/include/Quat4f.h
vecmath/include/vecmath.h
vecmath/include/Vector2f.h
vecmath/include/Vector3f.h
vecmath/include/Vector4f.h
vecmath/src/Matrix2f.cpp
vecmath/src/Matrix3f.cpp
vecmath/src/Matrix4f.cpp
vecmath/src/Quat4f.cpp
vecmath/src/Vector2f.cpp
vecmath/src/Vector3f.cpp
vecmath/src/Vector4f.cpp
camera.cpp
camera.h
ClothSystem.cpp
ClothSystem.h
Forcefield.cpp
Forcefield.h
main.cpp
particleSystem.cpp
particleSystem.h
pendulumSystem.cpp
pendulumSystem.h
simpleSystem.cpp
simpleSystem.h
spring.cpp
Spring.h
TimeStepper.cpp
TimeStepper.hpp)
add_executable(3 ${SOURCE_FILES})