Skip to content

Commit

Permalink
CMake: another fix for case-sensitive variables
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalyster committed Jun 5, 2019
1 parent 913cbe1 commit b526376
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ macro(LIST_CONTAINS var value)
endforeach(value2)
endmacro(LIST_CONTAINS)

if(NOT LIB_install_DIR)
set(LIB_install_DIR "lib")
if(NOT LIB_INSTALL_DIR)
set(LIB_INSTALL_DIR "lib")
endif()

set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules")
Expand Down

0 comments on commit b526376

Please sign in to comment.