summaryrefslogtreecommitdiff
path: root/indra/llwindow
diff options
context:
space:
mode:
authorNicky <nicky.dasmijn@gmail.com>2022-04-18 18:11:43 +0200
committerNicky <nicky.dasmijn@gmail.com>2022-04-18 18:11:43 +0200
commit2b151e0aefd54671e1be504269f10318d303dccb (patch)
treec1527ef5d23bc946ac8dfcb907d2678a9a96db79 /indra/llwindow
parentdcfb94fbaca3c66ec02e6873cda53b4afd547beb (diff)
Round one to support conan for 3P packages, this allows to build the viewer on Linux again.
Diffstat (limited to 'indra/llwindow')
-rw-r--r--indra/llwindow/CMakeLists.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/llwindow/CMakeLists.txt b/indra/llwindow/CMakeLists.txt
index c86b252994..a2044f374c 100644
--- a/indra/llwindow/CMakeLists.txt
+++ b/indra/llwindow/CMakeLists.txt
@@ -54,14 +54,15 @@ set(llwindow_LINK_LIBRARIES
llrender
llfilesystem
llxml
+ ll::glh_linear
+ ll::glext
)
# Libraries on which this library depends, needed for Linux builds
# Sort by high-level to low-level
if (LINUX)
list( APPEND llwindow_LINK_LIBRARIES
ll::uilibraries
- ll::sdl
- ll::fontconfig # For FCInit and other FC* functions.
+ ll::SDL
)
list(APPEND viewer_SOURCE_FILES
@@ -174,5 +175,5 @@ endif (llwindow_HEADER_FILES)
${viewer_SOURCE_FILES}
)
-target_link_libraries (llwindow ${llwindow_LINK_LIBRARIES} ll::sdl)
+target_link_libraries (llwindow ${llwindow_LINK_LIBRARIES})
target_include_directories( llwindow INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})