fix build for BSDs
This commit is contained in:
parent
d31ce38bf7
commit
33ca0b906c
|
@ -344,7 +344,7 @@ elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux|.*BSD|DragonFly")
|
||||||
set (OPENSSL_LIBS ssl crypto)
|
set (OPENSSL_LIBS ssl crypto)
|
||||||
else()
|
else()
|
||||||
find_library (lib_ssl ssl)
|
find_library (lib_ssl ssl)
|
||||||
|
@ -426,9 +426,9 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
#
|
#
|
||||||
# Linux installation
|
# Linux/BSD installation
|
||||||
#
|
#
|
||||||
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux|.*BSD|DragonFly")
|
||||||
configure_files (${CMAKE_CURRENT_SOURCE_DIR}/dist/rpm ${CMAKE_BINARY_DIR}/rpm)
|
configure_files (${CMAKE_CURRENT_SOURCE_DIR}/dist/rpm ${CMAKE_BINARY_DIR}/rpm)
|
||||||
install(FILES res/barrier.svg DESTINATION share/icons/hicolor/scalable/apps)
|
install(FILES res/barrier.svg DESTINATION share/icons/hicolor/scalable/apps)
|
||||||
if("${VERSION_MAJOR}" STREQUAL "2")
|
if("${VERSION_MAJOR}" STREQUAL "2")
|
||||||
|
|
Loading…
Reference in New Issue