From 48c6aaaccd06ba4e6ba9ef2c8b71750a49a3277c Mon Sep 17 00:00:00 2001 From: Lorenzo Tamer <62418866+lorenzino65@users.noreply.github.com> Date: Mon, 2 Oct 2023 17:23:34 +0200 Subject: [PATCH] Removed function double definition (#1073) --- CMakeLists.txt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c8fa838b..28353f47 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -111,13 +111,6 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) file(GLOB SOURCE *.cpp ) -# Build all examples -function(buildExamples) - foreach(EXAMPLE ${EXAMPLES}) - buildExample(${EXAMPLE}) - endforeach(EXAMPLE) -endfunction(buildExamples) - if(RESOURCE_INSTALL_DIR) add_definitions(-DVK_EXAMPLE_ASSETS_DIR=\"${RESOURCE_INSTALL_DIR}/\") add_definitions(-DVK_EXAMPLE_SHADERS_DIR=\"${RESOURCE_INSTALL_DIR}/shaders/\")