Skip to content

Commit 4ecf2b4

Browse files
committed
Fix cmake failure
1 parent 4801feb commit 4ecf2b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ if(BUILD_TOOLS AND BUILD_DX11 AND WIN32)
450450
${COMPILED_SHADERS}/Texenvmap_VSBasic.inc)
451451
target_compile_features(texenvmap PRIVATE cxx_std_17)
452452
target_include_directories(texenvmap PRIVATE ${COMPILED_SHADERS})
453-
target_link_libraries(texenvmap ${PROJECT_NAME} ole32.lib version.lib)
453+
target_link_libraries(texenvmap PRIVATE ${PROJECT_NAME} ole32.lib version.lib)
454454
source_group(texenvmap REGULAR_EXPRESSION Texenvmap/*.*)
455455
list(APPEND TOOL_EXES texenvmap)
456456
endif()

Texenvmap/Shaders/Texenvmap.hlsl

Lines changed: 1 addition & 1 deletion
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)