Turns out `OUTPUT` for `add_custom_command` requires CMake 3.20. https://cmake.org/cmake/help/latest/command/add_custom_command.html Signed-off-by: Fabian Sauter <sauter.fabian@mailbox.org>
8 lines
No EOL
178 B
CMake
8 lines
No EOL
178 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
# ######################
|
|
cmake_minimum_required(VERSION 3.20)
|
|
|
|
add_library(test_shaders "Utils.cpp"
|
|
"Utils.hpp")
|
|
|
|
add_subdirectory(glsl) |