27 lines
575 B
CMake
27 lines
575 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(tes-tiger)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
include_directories(includes)
|
|
link_directories(libraries)
|
|
|
|
add_executable(tes-tiger
|
|
includes/boost/property_tree/ptree.hpp
|
|
includes/boost/property_tree/json_parser.hpp
|
|
includes/glm/gtc/type_ptr.hpp
|
|
includes/glm/gtc/matrix_transform.hpp
|
|
includes/glm/glm.hpp
|
|
includes/SOIL/SOIL.h
|
|
includes/GL/glew.h
|
|
includes/GLFW/glfw3.h
|
|
utilities.h
|
|
glew.c
|
|
utilities.cpp
|
|
main.cpp)
|
|
|
|
target_link_libraries(tes-tiger
|
|
libSOIL.a
|
|
libglfw3.a
|
|
opengl32.lib)
|