From 7646deeea72f3eb1076a432603f001c7a3372d9b Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Wed, 16 May 2018 19:57:18 +0200 Subject: Hacky 2d vector field visualization using compute shaders --- CMakeLists.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..a16dced --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,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( + shader + main.cc +) + +target_link_libraries( + shader + GL + GLEW + glfw +) -- cgit v1.2.3