1
0
Fork 0
mirror of https://github.com/gwm17/Specter.git synced 2025-04-11 02:28:51 -04:00

Update CMakeLists.txt

Changes elseif to two if statements
This commit is contained in:
Eli Temanson 2022-11-07 21:10:04 -05:00
parent 8f6c00a6a7
commit 204d1bf4c1

View File

@ -15,7 +15,8 @@ option(BUILD_SPECPROJECT "Build SpecProject template" Off)
if(NOT DEFINED SPECTER_BINARY_DIR)
set(SPECTER_BINARY_DIR ${CMAKE_CURRENT_SOURCE_DIR}/bin)
elseif(NOT DEFINED SPECTER_LIBRARY_DIR) # optional block, can be repeated
endif()
if(NOT DEFINED SPECTER_LIBRARY_DIR) # optional block, can be repeated
set(SPECTER_LIBRARY_DIR ${CMAKE_CURRENT_SOURCE_DIR}/lib)
endif()