mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 01:44:07 +02:00
link GnuTLS to the assignment-client
This commit is contained in:
parent
17d2e14f0f
commit
3d071e85d5
1 changed files with 3 additions and 1 deletions
|
@ -13,6 +13,7 @@ set(MACRO_DIR "${ROOT_DIR}/cmake/macros")
|
|||
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/../cmake/modules/")
|
||||
|
||||
find_package(Qt5 COMPONENTS Network Script Widgets)
|
||||
find_package(GnuTLS REQUIRED)
|
||||
|
||||
include("${MACRO_DIR}/SetupHifiProject.cmake")
|
||||
setup_hifi_project(${TARGET_NAME} TRUE)
|
||||
|
@ -41,4 +42,5 @@ IF (WIN32)
|
|||
target_link_libraries(${TARGET_NAME} Winmm Ws2_32)
|
||||
ENDIF(WIN32)
|
||||
|
||||
target_link_libraries(${TARGET_NAME} Qt5::Network Qt5::Widgets Qt5::Script)
|
||||
include_directories("${GNUTLS_INCLUDE_DIR}")
|
||||
target_link_libraries(${TARGET_NAME} Qt5::Network Qt5::Widgets Qt5::Script "${GNUTLS_LIBRARY}")
|
Loading…
Reference in a new issue