* Refactored all CMake files * Started working on compiling shaders to header files in CMake Signed-off-by: Fabian Sauter <sauter.fabian@mailbox.org>
8 lines
No EOL
198 B
CMake
8 lines
No EOL
198 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
#######################
|
|
cmake_minimum_required(VERSION 3.15)
|
|
|
|
add_library(test_shaders "Utils.cpp"
|
|
"Utils.hpp")
|
|
|
|
add_subdirectory(glsl) |