-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
60 lines (40 loc) · 1.01 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
cmake_minimum_required(VERSION 3.0.0)
project(virtualWorld VERSION 0.1.0)
add_library(
SOURCE_FILES
src/settings.hpp
src/World.hpp
src/World.cpp
src/Vector.hpp
src/Vector.cpp
src/Organism.hpp
src/Organism.cpp
src/Animal.hpp
src/Animal.cpp
src/animals/Wolf.hpp
src/animals/Wolf.cpp
src/animals/Sheep.hpp
src/animals/Sheep.cpp
src/animals/Fox.hpp
src/animals/Fox.cpp
src/animals/Turtle.hpp
src/animals/Turtle.cpp
src/animals/Antelope.hpp
src/animals/Antelope.cpp
src/animals/Human.hpp
src/animals/Human.cpp
src/Plant.hpp
src/Plant.cpp
src/plants/Grass.hpp
src/plants/Grass.cpp
src/plants/Dandelion.hpp
src/plants/Dandelion.cpp
src/plants/Guarana.hpp
src/plants/Guarana.cpp
src/plants/Wolfberry.hpp
src/plants/Wolfberry.cpp
src/plants/PineBorscht.hpp
src/plants/PineBorscht.cpp
)
add_executable(virtualWorld src/main.cpp)
target_link_libraries(${PROJECT_NAME} SOURCE_FILES)