Remove comment regarding only static builds being supported on Windows (#4559)
* Remove comment regarding only static builds being supported on Windows * Minor fix
This commit is contained in:
committed by
Corentin Le Molgat
parent
668cc8a1cf
commit
b84c60b464
@@ -73,7 +73,6 @@ if(UNIX)
|
||||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_${OUTPUTCONFIG} ${CMAKE_BINARY_DIR}/${OutputConfig}/${CMAKE_INSTALL_BINDIR})
|
||||
endforeach()
|
||||
else()
|
||||
# Currently Only support static build for windows
|
||||
option(BUILD_SHARED_LIBS "Build shared libraries (.dll)." ON)
|
||||
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR})
|
||||
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR})
|
||||
|
||||
@@ -52,8 +52,7 @@ if(UNIX)
|
||||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_${OUTPUTCONFIG} ${CMAKE_BINARY_DIR}/${OutputConfig}/${CMAKE_INSTALL_BINDIR})
|
||||
endforeach()
|
||||
else()
|
||||
# Currently Only support static build for windows
|
||||
option(BUILD_SHARED_LIBS "Build shared libraries (.dll)." OFF)
|
||||
option(BUILD_SHARED_LIBS "Build shared libraries (.dll)." ON)
|
||||
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR})
|
||||
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR})
|
||||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR})
|
||||
|
||||
Reference in New Issue
Block a user