forked from jbalestr42/GraphicsEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
154 lines (134 loc) · 4.39 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# Copy all dlls into the executable directory
function(link_library_dll lib_name lib_path)
link_library(${lib_name} ${lib_path})
message("- Copy dlls")
get_filename_component(${lib_name}_DIR ${${lib_name}_LIB} PATH)
file(GLOB files ${${lib_name}_DIR}/*.dll)
foreach (file ${files})
add_custom_command(TARGET GraphicsEngine POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${file} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$<CONFIG>)
endforeach()
endfunction()
# Find and link a library for mac
function(link_library lib_name lib_path)
message("- Link ${lib_name}")
find_library(${lib_name}_LIB ${lib_name} ${lib_path})
target_link_libraries(GraphicsEngine ${${lib_name}_LIB})
endfunction()
# Define the minimum cmake version
cmake_minimum_required(VERSION 3.0)
# Change the output directory
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
# Set the project name
project(GraphicsEngine CXX)
add_compile_options(-std=c++11)
set(SRCS
sources/Camera.cpp
sources/Color.cpp
sources/DirectionalLight.cpp
sources/Keyboard.cpp
sources/Light.cpp
sources/LightManager.cpp
sources/main.cpp
sources/Material.cpp
sources/Matrix.cpp
sources/Mesh.cpp
sources/Model.cpp
sources/Mouse.cpp
sources/PointLight.cpp
sources/Quaternion.cpp
sources/ResourceManager.cpp
sources/Shader.cpp
sources/SpotLight.cpp
sources/Texture.cpp
sources/Transformable.cpp
sources/Vector2.cpp
sources/Vector3.cpp
sources/Vector4.cpp
sources/Vertex.cpp
sources/Windows.cpp
)
set(HEADERS
includes/Camera.hpp
includes/Color.hpp
includes/DirectionalLight.hpp
includes/Keyboard.hpp
includes/Light.hpp
includes/LightManager.hpp
includes/Material.hpp
includes/Matrix.hpp
includes/Mesh.hpp
includes/Model.hpp
includes/Mouse.hpp
includes/PointLight.hpp
includes/Quaternion.hpp
includes/ResourceManager.hpp
includes/Shader.hpp
includes/SpotLight.hpp
includes/Texture.hpp
includes/Transformable.hpp
includes/Vector2.hpp
includes/Vector3.hpp
includes/Vector4.hpp
includes/Vertex.hpp
includes/Windows.hpp
includes/OpenGL.hpp
)
# Set the executable name
add_executable(GraphicsEngine ${SRCS} ${HEADERS})
# Add the libraries includes
include_directories(lib/include)
# Don't need to use the full path when including a file
target_include_directories(GraphicsEngine PUBLIC includes)
#TODO manage Debug and Release
# Link libraries
if (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
message("-- Windows detected")
link_library_dll(assimp "lib/assimp-3.3.1/x86")
link_library_dll(DevIL "lib/DevIL-1.8.0/x86")
link_library_dll(ILU "lib/DevIL-1.8.0/x86")
link_library_dll(ILUT "lib/DevIL-1.8.0/x86")
link_library_dll(glew32 "lib/glew-2.0.0/x86")
link_library_dll(glfw3 "lib/glfw-3.2.1/x86/lib-vc2015")
add_definitions(-DWIN)
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
message("-- Linux detected")
add_definitions(-DLINUX)
link_library(libassimp.so "lib/assimp-3.3.1/Linux")
link_library(libIL.so "lib/DevIL-1.8.0/Linux")
link_library(libILU.so "lib/DevIL-1.8.0/Linux")
link_library(libILUT.so "lib/DevIL-1.8.0/Linux")
link_library(libGLEW.so "lib/glew-2.0.0/Linux")
link_library(libglfw.so "lib/glfw-3.2.1/Linux")
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
message("-- Darwin detected")
add_definitions(-DMACOS)
link_library(libassimp.dylib "lib/assimp-3.3.1/Mac")
link_library(libIL.dylib "lib/DevIL-1.8.0/Mac")
link_library(libILU.dylib "lib/DevIL-1.8.0/Mac")
link_library(libILUT.dylib "lib/DevIL-1.8.0/Mac")
link_library(libglfw3.dylib "lib/glfw-3.2.1/Mac")
endif ()
# Link OpenGL
find_package(OpenGL REQUIRED)
if (OPENGL_FOUND)
message("- Link OpenGL : ${OPENGL_gl_LIBRARY}")
target_include_directories(GraphicsEngine PUBLIC ${OPENGL_INCLUDE_DIR})
target_link_libraries(GraphicsEngine ${OPENGL_gl_LIBRARY})
else ()
message(FATAL_ERROR " : OpenGL not found !")
endif ()
if (${CMAKE_CXX_COMPILER_ID} STREQUAL MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /WX")
# Prevent link warning in mvc
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /NODEFAULTLIB:msvcrt.lib")
# Don't generate the ZERO_CHECK project
set(CMAKE_SUPPRESS_REGENERATION true)
# Remove false warnings about std::copy and std::move
add_definitions(-D_SCL_SECURE_NO_WARNINGS)
else ()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wextra")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -o3")
endif ()
message("- Compiler flags (${CMAKE_CXX_COMPILER_ID}) : ${CMAKE_CXX_FLAGS}")