Skip to content

Commit

Permalink
Fixed project output name in CMake module.
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasBanana committed Feb 19, 2017
1 parent 3c168ea commit 77e22af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FindXShaderCompiler.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ endmacro()

find_path(XSC_INCLUDE_DIR Xsc/Xsc.h)

find_library(XSC_LIBRARY NAMES XShaderCompiler)
find_library(XSC_LIBRARY_DEBUG NAMES XShaderCompiler)
find_library(XSC_LIBRARY NAMES xsc_core)
find_library(XSC_LIBRARY_DEBUG NAMES xsc_core)

# Setup package handle

Expand All @@ -34,4 +34,4 @@ FIND_PACKAGE_HANDLE_STANDARD_ARGS(

if(XSC_FOUND)
_XSC_APPEND_LIBRARIES(XSC_LIBRARIES XSC_LIBRARY)
endif(HTLIB_FOUND)
endif(XSC_FOUND)

0 comments on commit 77e22af

Please sign in to comment.