From 304d9460ee5a87f55f83dbcb8ef97455c888d9f0 Mon Sep 17 00:00:00 2001 From: Cezary Date: Sat, 9 Nov 2024 19:49:55 +0100 Subject: [PATCH] remove .hlsl shader from cmake visible files --- examples/BitonicSort/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/BitonicSort/CMakeLists.txt b/examples/BitonicSort/CMakeLists.txt index e949dde..e806f58 100644 --- a/examples/BitonicSort/CMakeLists.txt +++ b/examples/BitonicSort/CMakeLists.txt @@ -3,7 +3,7 @@ add_library(BitonicSort "") target_sources(BitonicSort PRIVATE bitonic_sort_executor.cpp - ComputeShaderSort11.hlsl + #ComputeShaderSort11.hlsl PUBLIC ${CMAKE_CURRENT_LIST_DIR}/bitonic_sort_executor.h )