tes-tiger/CMakeLists.txt

27 lines
575 B
CMake
Raw Permalink Normal View History

2018-06-14 19:41:30 +00:00
cmake_minimum_required(VERSION 3.10)
project(tes-tiger)
set(CMAKE_CXX_STANDARD 17)
2018-06-15 13:15:28 +00:00
include_directories(includes)
link_directories(libraries)
2018-06-14 19:41:30 +00:00
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
2018-06-15 13:15:28 +00:00
utilities.h
2018-06-14 19:41:30 +00:00
glew.c
2018-06-15 13:15:28 +00:00
utilities.cpp
2018-06-14 19:41:30 +00:00
main.cpp)
target_link_libraries(tes-tiger
libSOIL.a
libglfw3.a
opengl32.lib)