diff options
author | Anchor <none@none> | 2019-05-08 18:05:49 -0600 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 18:39:20 -0400 |
commit | 761d9aa3bff981d1f322c9fdfe33ac35b30bf338 (patch) | |
tree | e735d5636f77eae6170e8fc496b8f99db6d766e9 /indra | |
parent | e039f5e29ee02c37d2febc21b492a0d425661897 (diff) |
[DRTVWR-476] - test adding at beginiing of list
Diffstat (limited to 'indra')
-rw-r--r-- | indra/cmake/LLAddBuildTest.cmake | 2 | ||||
-rw-r--r-- | indra/newview/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/indra/cmake/LLAddBuildTest.cmake b/indra/cmake/LLAddBuildTest.cmake index 983b0bc3a9..0a20a2c068 100644 --- a/indra/cmake/LLAddBuildTest.cmake +++ b/indra/cmake/LLAddBuildTest.cmake @@ -209,7 +209,7 @@ FUNCTION(LL_ADD_INTEGRATION_TEST ) if (WINDOWS) - list(APPEND libraries legacy_stdio_definitions) + list(INSERT libraries 0 legacy_stdio_definitions) endif (WINDOWS) # Add test executable build target diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 3ba6767082..2ad969a705 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1978,7 +1978,7 @@ endif (WINDOWS) # modern version. if (WINDOWS) - list(APPEND LLAPPEARANCE_LIBRARIES legacy_stdio_definitions) + list(INSERT PNG_PRELOAD_ARCHIVES 0 legacy_stdio_definitions) endif (WINDOWS) target_link_libraries(${VIEWER_BINARY_NAME} |