Skip to content

Commit 4ecdced

Browse files
committed
Fix cmake failure
1 parent c31d7c8 commit 4ecdced

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ if(BUILD_TOOLS AND BUILD_DX11 AND WIN32)
444444
${COMPILED_SHADERS}/Texenvmap_VSBasic.inc)
445445
target_compile_features(texenvmap PRIVATE cxx_std_17)
446446
target_include_directories(texenvmap PRIVATE ${COMPILED_SHADERS})
447-
target_link_libraries(texenvmap ${PROJECT_NAME} ole32.lib version.lib)
447+
target_link_libraries(texenvmap PRIVATE ${PROJECT_NAME} ole32.lib version.lib)
448448
source_group(texenvmap REGULAR_EXPRESSION Texenvmap/*.*)
449449
list(APPEND TOOL_EXES texenvmap)
450450
endif()

Texenvmap/Shaders/Texenvmap.hlsl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//--------------------------------------------------------------------------------------
2-
// File: Texenvmap.fx
2+
// File: Texenvmap.hlsl
33
//
44
// DirectX Texture environment map tool shaders
55
//

0 commit comments

Comments
 (0)