Skip to content

Commit

Permalink
Fix cmake failure
Browse files Browse the repository at this point in the history
  • Loading branch information
walbourn committed Oct 28, 2024
1 parent 2533e13 commit 87af652
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ if(BUILD_TOOLS AND BUILD_DX11 AND WIN32)
${COMPILED_SHADERS}/Texenvmap_VSBasic.inc)
target_compile_features(texenvmap PRIVATE cxx_std_17)
target_include_directories(texenvmap PRIVATE ${COMPILED_SHADERS})
target_link_libraries(texenvmap ${PROJECT_NAME} ole32.lib version.lib)
target_link_libraries(texenvmap PRIVATE ${PROJECT_NAME} ole32.lib version.lib)
source_group(texenvmap REGULAR_EXPRESSION Texenvmap/*.*)
list(APPEND TOOL_EXES texenvmap)
endif()
Expand Down
2 changes: 1 addition & 1 deletion Texenvmap/Shaders/Texenvmap.hlsl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//--------------------------------------------------------------------------------------
// File: Texenvmap.fx
// File: Texenvmap.hlsl
//
// DirectX Texture environment map tool shaders
//
Expand Down

0 comments on commit 87af652

Please sign in to comment.