aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 4a89f50b81f06baa6970267fc362b9e98526324b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
cmake_minimum_required(VERSION 3.10)
project(shader)

set(
	CMAKE_CXX_FLAGS
	"${CMAKE_CXX_FLAGS} -std=c++17 -W -Wall -Wextra -Winline -pedantic"
)

add_executable(
	computicle
		src/main.cc
)

target_link_libraries(
	computicle
		GL
		GLEW
		glfw
)