From b820431a2cddd41155d5750e1ae6ec3def2831c0 Mon Sep 17 00:00:00 2001 From: Moritz Heinemann Date: Thu, 23 Nov 2023 16:53:30 +0100 Subject: [PATCH] No external install include dir --- SPIRV/CMakeLists.txt | 3 +-- StandAlone/CMakeLists.txt | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/SPIRV/CMakeLists.txt b/SPIRV/CMakeLists.txt index da59967e..9918b1de 100644 --- a/SPIRV/CMakeLists.txt +++ b/SPIRV/CMakeLists.txt @@ -108,8 +108,7 @@ endif() if(ENABLE_OPT) target_link_libraries(SPIRV PRIVATE MachineIndependent PUBLIC SPIRV-Tools-opt) target_include_directories(SPIRV PUBLIC - $ - $) + $) else() target_link_libraries(SPIRV PRIVATE MachineIndependent) endif() diff --git a/StandAlone/CMakeLists.txt b/StandAlone/CMakeLists.txt index 124742a9..45ad26ef 100644 --- a/StandAlone/CMakeLists.txt +++ b/StandAlone/CMakeLists.txt @@ -73,8 +73,7 @@ endif() target_link_libraries(glslang-standalone ${LIBRARIES}) target_include_directories(glslang-standalone PUBLIC - $ - $) + $) if(ENABLE_SPVREMAPPER) set(REMAPPER_SOURCES spirv-remap.cpp)