diff options
| author | Nicky <nicky.dasmijn@gmail.com> | 2022-04-18 03:42:26 +0200 | 
|---|---|---|
| committer | Nicky <nicky.dasmijn@gmail.com> | 2022-04-18 03:42:26 +0200 | 
| commit | 98ef2494705aeecf636ae4733dcee04cf23297d7 (patch) | |
| tree | 91167ccba5b29769dcd1a3de600c4f65c15c2a7f | |
| parent | 5aa81b16598044909e51ab8f50663a05f701e127 (diff) | |
Need to use list( APPEND ... to append to a list.
| -rw-r--r-- | indra/llwindow/CMakeLists.txt | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwindow/CMakeLists.txt b/indra/llwindow/CMakeLists.txt index dfa511e6ec..c86b252994 100644 --- a/indra/llwindow/CMakeLists.txt +++ b/indra/llwindow/CMakeLists.txt @@ -58,7 +58,7 @@ set(llwindow_LINK_LIBRARIES  # Libraries on which this library depends, needed for Linux builds  # Sort by high-level to low-level  if (LINUX) -  set(llwindow_LINK_LIBRARIES APPEND +  list( APPEND llwindow_LINK_LIBRARIES            ll::uilibraries            ll::sdl            ll::fontconfig          # For FCInit and other FC* functions.  | 
