The folder where the disk cache lives was originally renamed from llvfs to llcache but @henri's suggestion that that doesn't reflect the other files in the same place and it should be llfilesystem is a good one so I changed it over
parent
20b50f99c8
commit
d9448c6f52
|
|
@ -40,7 +40,7 @@ add_subdirectory(${LIBS_OPEN_PREFIX}llmath)
|
|||
add_subdirectory(${LIBS_OPEN_PREFIX}llmessage)
|
||||
add_subdirectory(${LIBS_OPEN_PREFIX}llprimitive)
|
||||
add_subdirectory(${LIBS_OPEN_PREFIX}llrender)
|
||||
add_subdirectory(${LIBS_OPEN_PREFIX}llcache)
|
||||
add_subdirectory(${LIBS_OPEN_PREFIX}llfilesystem)
|
||||
add_subdirectory(${LIBS_OPEN_PREFIX}llwindow)
|
||||
add_subdirectory(${LIBS_OPEN_PREFIX}llxml)
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ set(cmake_SOURCE_FILES
|
|||
LLSharedLibs.cmake
|
||||
LLTestCommand.cmake
|
||||
LLUI.cmake
|
||||
LLCache.cmake
|
||||
LLFileSystem.cmake
|
||||
LLWindow.cmake
|
||||
LLXML.cmake
|
||||
Linking.cmake
|
||||
|
|
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
# -*- cmake -*-
|
||||
|
||||
set(LLCACHE_INCLUDE_DIRS
|
||||
${LIBS_OPEN_DIR}/llcache
|
||||
)
|
||||
|
||||
set(LLCACHE_LIBRARIES llcache)
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# -*- cmake -*-
|
||||
|
||||
set(LLFILESYSTEM_INCLUDE_DIRS
|
||||
${LIBS_OPEN_DIR}/llfilesystem
|
||||
)
|
||||
|
||||
set(LLFILESYSTEM_LIBRARIES llfilesystem)
|
||||
|
|
@ -11,7 +11,7 @@ include(LLMath)
|
|||
include(LLMessage)
|
||||
include(LLCoreHttp)
|
||||
include(LLRender)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLWindow)
|
||||
include(LLXML)
|
||||
include(Linking)
|
||||
|
|
@ -23,7 +23,7 @@ include_directories(
|
|||
${LLINVENTORY_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLRENDER_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${LLWINDOW_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
)
|
||||
|
|
@ -83,7 +83,7 @@ target_link_libraries(llappearance
|
|||
${LLINVENTORY_LIBRARIES}
|
||||
${LLIMAGE_LIBRARIES}
|
||||
${LLRENDER_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
|
|
@ -100,7 +100,7 @@ if (BUILD_HEADLESS)
|
|||
${LLINVENTORY_LIBRARIES}
|
||||
${LLIMAGE_LIBRARIES}
|
||||
${LLRENDERHEADLESS_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
|
|
@ -109,15 +109,3 @@ if (BUILD_HEADLESS)
|
|||
${LLCOMMON_LIBRARIES}
|
||||
)
|
||||
endif (BUILD_HEADLESS)
|
||||
|
||||
#add unit tests
|
||||
#if (LL_TESTS)
|
||||
# INCLUDE(LLAddBuildTest)
|
||||
# SET(llappearance_TEST_SOURCE_FILES
|
||||
# # no real unit tests yet!
|
||||
# )
|
||||
# LL_ADD_PROJECT_UNIT_TESTS(llappearance "${llappearance_TEST_SOURCE_FILES}")
|
||||
|
||||
#set(TEST_DEBUG on)
|
||||
# set(test_libs llappearance ${LLCOMMON_LIBRARIES})
|
||||
#endif (LL_TESTS)
|
||||
|
|
|
|||
|
|
@ -9,14 +9,14 @@ include(OPENAL)
|
|||
include(LLCommon)
|
||||
include(LLMath)
|
||||
include(LLMessage)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
|
||||
include_directories(
|
||||
${LLAUDIO_INCLUDE_DIRS}
|
||||
${LLCOMMON_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLMESSAGE_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${OGG_INCLUDE_DIRS}
|
||||
${VORBISENC_INCLUDE_DIRS}
|
||||
${VORBISFILE_INCLUDE_DIRS}
|
||||
|
|
@ -82,7 +82,7 @@ target_link_libraries(
|
|||
${LLCOMMON_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLMESSAGE_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${VORBISENC_LIBRARIES}
|
||||
${VORBISFILE_LIBRARIES}
|
||||
${VORBIS_LIBRARIES}
|
||||
|
|
|
|||
|
|
@ -6,14 +6,14 @@ include(00-Common)
|
|||
include(LLCommon)
|
||||
include(LLMath)
|
||||
include(LLMessage)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLXML)
|
||||
|
||||
include_directories(
|
||||
${LLCOMMON_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLMESSAGE_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
)
|
||||
include_directories(SYSTEM
|
||||
|
|
@ -85,6 +85,6 @@ target_link_libraries(
|
|||
${LLCOMMON_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLMESSAGE_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
)
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ include(LLCoreHttp)
|
|||
include(LLCommon)
|
||||
include(LLMath)
|
||||
include(LLMessage)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLXML)
|
||||
|
||||
include_directories(
|
||||
|
|
@ -15,7 +15,7 @@ include_directories(
|
|||
${LLCOMMON_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLMESSAGE_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
)
|
||||
include_directories(SYSTEM
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# -*- cmake -*-
|
||||
|
||||
project(llcache)
|
||||
project(llfilesystem)
|
||||
|
||||
include(00-Common)
|
||||
include(LLCommon)
|
||||
|
|
@ -11,14 +11,14 @@ include_directories(
|
|||
${LLCOMMON_SYSTEM_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
set(llcache_SOURCE_FILES
|
||||
set(llfilesystem_SOURCE_FILES
|
||||
lldir.cpp
|
||||
lldiriterator.cpp
|
||||
lllfsthread.cpp
|
||||
lldiskcache.cpp
|
||||
)
|
||||
|
||||
set(llcache_HEADER_FILES
|
||||
set(llfilesystem_HEADER_FILES
|
||||
CMakeLists.txt
|
||||
|
||||
lldir.h
|
||||
|
|
@ -29,15 +29,15 @@ set(llcache_HEADER_FILES
|
|||
)
|
||||
|
||||
if (DARWIN)
|
||||
LIST(APPEND llcache_SOURCE_FILES lldir_utils_objc.mm)
|
||||
LIST(APPEND llcache_SOURCE_FILES lldir_utils_objc.h)
|
||||
LIST(APPEND llcache_SOURCE_FILES lldir_mac.cpp)
|
||||
LIST(APPEND llcache_HEADER_FILES lldir_mac.h)
|
||||
LIST(APPEND llfilesystem_SOURCE_FILES lldir_utils_objc.mm)
|
||||
LIST(APPEND llfilesystem_SOURCE_FILES lldir_utils_objc.h)
|
||||
LIST(APPEND llfilesystem_SOURCE_FILES lldir_mac.cpp)
|
||||
LIST(APPEND llfilesystem_HEADER_FILES lldir_mac.h)
|
||||
endif (DARWIN)
|
||||
|
||||
if (LINUX)
|
||||
LIST(APPEND llcache_SOURCE_FILES lldir_linux.cpp)
|
||||
LIST(APPEND llcache_HEADER_FILES lldir_linux.h)
|
||||
LIST(APPEND llfilesystem_SOURCE_FILES lldir_linux.cpp)
|
||||
LIST(APPEND llfilesystem_HEADER_FILES lldir_linux.h)
|
||||
|
||||
if (INSTALL)
|
||||
set_source_files_properties(lldir_linux.cpp
|
||||
|
|
@ -48,23 +48,23 @@ if (LINUX)
|
|||
endif (LINUX)
|
||||
|
||||
if (WINDOWS)
|
||||
LIST(APPEND llcache_SOURCE_FILES lldir_win32.cpp)
|
||||
LIST(APPEND llcache_HEADER_FILES lldir_win32.h)
|
||||
LIST(APPEND llfilesystem_SOURCE_FILES lldir_win32.cpp)
|
||||
LIST(APPEND llfilesystem_HEADER_FILES lldir_win32.h)
|
||||
endif (WINDOWS)
|
||||
|
||||
set_source_files_properties(${llcache_HEADER_FILES}
|
||||
set_source_files_properties(${llfilesystem_HEADER_FILES}
|
||||
PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
|
||||
list(APPEND llcache_SOURCE_FILES ${llcache_HEADER_FILES})
|
||||
list(APPEND llfilesystem_SOURCE_FILES ${llfilesystem_HEADER_FILES})
|
||||
|
||||
add_library (llcache ${llcache_SOURCE_FILES})
|
||||
add_library (llfilesystem ${llfilesystem_SOURCE_FILES})
|
||||
|
||||
set(cache_BOOST_LIBRARIES
|
||||
${BOOST_FILESYSTEM_LIBRARY}
|
||||
${BOOST_SYSTEM_LIBRARY}
|
||||
)
|
||||
|
||||
target_link_libraries(llcache
|
||||
target_link_libraries(llfilesystem
|
||||
${LLCOMMON_LIBRARIES}
|
||||
${cache_BOOST_LIBRARIES}
|
||||
)
|
||||
|
|
@ -72,7 +72,7 @@ target_link_libraries(llcache
|
|||
if (DARWIN)
|
||||
include(CMakeFindFrameworks)
|
||||
find_library(COCOA_LIBRARY Cocoa)
|
||||
target_link_libraries(llcache ${COCOA_LIBRARY})
|
||||
target_link_libraries(llfilesystem ${COCOA_LIBRARY})
|
||||
endif (DARWIN)
|
||||
|
||||
|
||||
|
|
@ -80,7 +80,7 @@ endif (DARWIN)
|
|||
if (LL_TESTS)
|
||||
include(LLAddBuildTest)
|
||||
# UNIT TESTS
|
||||
SET(llcache_TEST_SOURCE_FILES
|
||||
SET(llfilesystem_TEST_SOURCE_FILES
|
||||
lldiriterator.cpp
|
||||
)
|
||||
|
||||
|
|
@ -88,10 +88,10 @@ if (LL_TESTS)
|
|||
PROPERTIES
|
||||
LL_TEST_ADDITIONAL_LIBRARIES "${cache_BOOST_LIBRARIES}"
|
||||
)
|
||||
LL_ADD_PROJECT_UNIT_TESTS(llcache "${llcache_TEST_SOURCE_FILES}")
|
||||
LL_ADD_PROJECT_UNIT_TESTS(llfilesystem "${llfilesystem_TEST_SOURCE_FILES}")
|
||||
|
||||
# INTEGRATION TESTS
|
||||
set(test_libs llmath llcommon llcache ${LLCOMMON_LIBRARIES} ${WINDOWS_LIBRARIES})
|
||||
set(test_libs llmath llcommon llfilesystem ${LLCOMMON_LIBRARIES} ${WINDOWS_LIBRARIES})
|
||||
|
||||
# TODO: Some of these need refactoring to be proper Unit tests rather than Integration tests.
|
||||
LL_ADD_INTEGRATION_TEST(lldir "" "${test_libs}")
|
||||
|
|
@ -6,7 +6,7 @@ include(00-Common)
|
|||
include(LLCommon)
|
||||
include(LLImage)
|
||||
include(LLMath)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLKDU)
|
||||
include(LLImageJ2COJ)
|
||||
include(ZLIB)
|
||||
|
|
@ -17,7 +17,7 @@ include_directories(
|
|||
${LLCOMMON_INCLUDE_DIRS}
|
||||
${LLCOMMON_SYSTEM_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${PNG_INCLUDE_DIRS}
|
||||
${ZLIB_INCLUDE_DIRS}
|
||||
)
|
||||
|
|
@ -68,7 +68,7 @@ else (USE_KDU)
|
|||
endif (USE_KDU)
|
||||
|
||||
target_link_libraries(llimage
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLCOMMON_LIBRARIES}
|
||||
${JPEG_LIBRARIES}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ include(LLCommon)
|
|||
include(LLCoreHttp)
|
||||
include(LLMath)
|
||||
include(LLMessage)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLXML)
|
||||
|
||||
include_directories(
|
||||
|
|
@ -81,7 +81,7 @@ if (LL_TESTS)
|
|||
LL_ADD_PROJECT_UNIT_TESTS(llinventory "${llinventory_TEST_SOURCE_FILES}")
|
||||
|
||||
#set(TEST_DEBUG on)
|
||||
set(test_libs llinventory ${LLMESSAGE_LIBRARIES} ${LLCACHE_LIBRARIES} ${LLCOREHTTP_LIBRARIES} ${LLMATH_LIBRARIES} ${LLCOMMON_LIBRARIES} ${WINDOWS_LIBRARIES})
|
||||
set(test_libs llinventory ${LLMESSAGE_LIBRARIES} ${LLFILESYSTEM_LIBRARIES} ${LLCOREHTTP_LIBRARIES} ${LLMATH_LIBRARIES} ${LLCOMMON_LIBRARIES} ${WINDOWS_LIBRARIES})
|
||||
LL_ADD_INTEGRATION_TEST(inventorymisc "" "${test_libs}")
|
||||
LL_ADD_INTEGRATION_TEST(llparcel "" "${test_libs}")
|
||||
endif (LL_TESTS)
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ include(LLCommon)
|
|||
include(LLCoreHttp)
|
||||
include(LLMath)
|
||||
include(LLMessage)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLAddBuildTest)
|
||||
include(Python)
|
||||
include(Tut)
|
||||
|
|
@ -23,7 +23,7 @@ include_directories(
|
|||
${LLCOREHTTP_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLMESSAGE_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${JSONCPP_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
|
|
@ -209,7 +209,7 @@ target_link_libraries(
|
|||
llmessage
|
||||
${CURL_LIBRARIES}
|
||||
${LLCOMMON_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${JSONCPP_LIBRARIES}
|
||||
${OPENSSL_LIBRARIES}
|
||||
|
|
@ -227,7 +227,7 @@ target_link_libraries(
|
|||
llmessage
|
||||
${CURL_LIBRARIES}
|
||||
${LLCOMMON_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${JSONCPP_LIBRARIES}
|
||||
${OPENSSL_LIBRARIES}
|
||||
|
|
@ -257,7 +257,7 @@ if (LL_TESTS)
|
|||
if (LINUX)
|
||||
set(test_libs
|
||||
${WINDOWS_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${CURL_LIBRARIES}
|
||||
${NGHTTP2_LIBRARIES}
|
||||
|
|
@ -273,7 +273,7 @@ if (LINUX)
|
|||
else (LINUX)
|
||||
set(test_libs
|
||||
${WINDOWS_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${CURL_LIBRARIES}
|
||||
${NGHTTP2_LIBRARIES}
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ include(LLMath)
|
|||
include(LLRender)
|
||||
include(LLWindow)
|
||||
include(LLXML)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
|
||||
include_directories(
|
||||
${FREETYPE_INCLUDE_DIRS}
|
||||
|
|
@ -19,10 +19,9 @@ include_directories(
|
|||
${LLIMAGE_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLRENDER_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${LLWINDOW_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
)
|
||||
include_directories(SYSTEM
|
||||
${LLCOMMON_SYSTEM_INCLUDE_DIRS}
|
||||
|
|
@ -103,9 +102,8 @@ if (BUILD_HEADLESS)
|
|||
${LLIMAGE_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLRENDER_HEADLESS_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLWINDOW_HEADLESS_LIBRARIES}
|
||||
${OPENGL_HEADLESS_LIBRARIES})
|
||||
|
||||
|
|
@ -125,7 +123,7 @@ target_link_libraries(llrender
|
|||
${LLCOMMON_LIBRARIES}
|
||||
${LLIMAGE_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
${LLWINDOW_LIBRARIES}
|
||||
${FREETYPE_LIBRARIES}
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ include(LLCoreHttp)
|
|||
include(LLRender)
|
||||
include(LLWindow)
|
||||
include(LLCoreHttp)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLXML)
|
||||
|
||||
include_directories(
|
||||
|
|
@ -25,7 +25,7 @@ include_directories(
|
|||
${LLMESSAGE_INCLUDE_DIRS}
|
||||
${LLRENDER_INCLUDE_DIRS}
|
||||
${LLWINDOW_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
${LIBS_PREBUILD_DIR}/include/hunspell
|
||||
)
|
||||
|
|
@ -283,7 +283,7 @@ target_link_libraries(llui
|
|||
${LLINVENTORY_LIBRARIES}
|
||||
${LLMESSAGE_LIBRARIES}
|
||||
${LLCOREHTTP_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES} # ugh, just for LLDir
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLXUIXML_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ include(LLCommon)
|
|||
include(LLImage)
|
||||
include(LLMath)
|
||||
include(LLRender)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLWindow)
|
||||
include(LLXML)
|
||||
include(UI)
|
||||
|
|
@ -26,7 +26,7 @@ include_directories(
|
|||
${LLIMAGE_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLRENDER_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${LLWINDOW_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
)
|
||||
|
|
@ -72,7 +72,7 @@ if (LINUX)
|
|||
${LLIMAGE_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLRENDER_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLWINDOW_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
${UI_LIBRARIES} # for GTK
|
||||
|
|
@ -95,7 +95,7 @@ if (LINUX)
|
|||
${LLIMAGE_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLRENDER_HEADLESS_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLWINDOW_HEADLESS_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
fontconfig # For FCInit and other FC* functions.
|
||||
|
|
|
|||
|
|
@ -5,13 +5,13 @@ project(llxml)
|
|||
include(00-Common)
|
||||
include(LLCommon)
|
||||
include(LLMath)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLXML)
|
||||
|
||||
include_directories(
|
||||
${LLCOMMON_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
)
|
||||
include_directories(
|
||||
${LLCOMMON_SYSTEM_INCLUDE_DIRS}
|
||||
|
|
@ -42,7 +42,7 @@ add_library (llxml ${llxml_SOURCE_FILES})
|
|||
# Libraries on which this library depends, needed for Linux builds
|
||||
# Sort by high-level to low-level
|
||||
target_link_libraries( llxml
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLCOMMON_LIBRARIES}
|
||||
${EXPAT_LIBRARIES}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ include(LLCoreHttp)
|
|||
include(LLCrashLogger)
|
||||
include(LLMath)
|
||||
include(LLMessage)
|
||||
include(LLCache)
|
||||
include(LLFilesystem)
|
||||
include(LLXML)
|
||||
include(Linking)
|
||||
include(LLSharedLibs)
|
||||
|
|
@ -19,7 +19,7 @@ include_directories(
|
|||
${LLCOMMON_INCLUDE_DIRS}
|
||||
${LLCRASHLOGGER_INCLUDE_DIRS}
|
||||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
)
|
||||
include_directories(SYSTEM
|
||||
|
|
@ -68,7 +68,7 @@ find_library(COCOA_LIBRARY Cocoa)
|
|||
|
||||
target_link_libraries(mac-crash-logger
|
||||
${LLCRASHLOGGER_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${COCOA_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
${LLMESSAGE_LIBRARIES}
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ include(LLPlugin)
|
|||
include(LLPrimitive)
|
||||
include(LLRender)
|
||||
include(LLUI)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLWindow)
|
||||
include(LLXML)
|
||||
include(NDOF)
|
||||
|
|
@ -84,7 +84,7 @@ include_directories(
|
|||
${LLPRIMITIVE_INCLUDE_DIRS}
|
||||
${LLRENDER_INCLUDE_DIRS}
|
||||
${LLUI_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${LLWINDOW_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
${LLLOGIN_INCLUDE_DIRS}
|
||||
|
|
@ -1995,7 +1995,7 @@ target_link_libraries(${VIEWER_BINARY_NAME}
|
|||
${LLRENDER_LIBRARIES}
|
||||
${FREETYPE_LIBRARIES}
|
||||
${LLUI_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLWINDOW_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
|
|
@ -2467,7 +2467,7 @@ if (LL_TESTS)
|
|||
set(test_libs
|
||||
${LLMESSAGE_LIBRARIES}
|
||||
${WINDOWS_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLCOMMON_LIBRARIES}
|
||||
${GOOGLEMOCK_LIBRARIES}
|
||||
|
|
@ -2482,7 +2482,7 @@ if (LL_TESTS)
|
|||
|
||||
set(test_libs
|
||||
${WINDOWS_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLCOMMON_LIBRARIES}
|
||||
${LLMESSAGE_LIBRARIES}
|
||||
|
|
|
|||
|
|
@ -8,12 +8,11 @@ include(LLCoreHttp)
|
|||
include(LLInventory)
|
||||
include(LLMath)
|
||||
include(LLMessage)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLXML)
|
||||
include(Linking)
|
||||
include(Tut)
|
||||
include(LLAddBuildTest)
|
||||
|
||||
include(GoogleMock)
|
||||
|
||||
include_directories(
|
||||
|
|
@ -23,7 +22,7 @@ include_directories(
|
|||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLMESSAGE_INCLUDE_DIRS}
|
||||
${LLINVENTORY_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
${LSCRIPT_INCLUDE_DIRS}
|
||||
${GOOGLEMOCK_INCLUDE_DIRS}
|
||||
|
|
@ -89,7 +88,7 @@ target_link_libraries(lltest
|
|||
${LLINVENTORY_LIBRARIES}
|
||||
${LLMESSAGE_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
${LSCRIPT_LIBRARIES}
|
||||
${LLCOMMON_LIBRARIES}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ include(LLCoreHttp)
|
|||
include(LLCrashLogger)
|
||||
include(LLMath)
|
||||
include(LLMessage)
|
||||
include(LLCache)
|
||||
include(LLFileSystem)
|
||||
include(LLWindow)
|
||||
include(LLXML)
|
||||
include(Linking)
|
||||
|
|
@ -23,7 +23,7 @@ include_directories(
|
|||
${LLMATH_INCLUDE_DIRS}
|
||||
${LLWINDOW_INCLUDE_DIRS}
|
||||
${LLXML_INCLUDE_DIRS}
|
||||
${LLCACHE_INCLUDE_DIRS}
|
||||
${LLFILESYSTEM_INCLUDE_DIRS}
|
||||
${BREAKPAD_INCLUDE_DIRECTORIES}
|
||||
)
|
||||
include_directories(SYSTEM
|
||||
|
|
@ -76,7 +76,7 @@ target_link_libraries(windows-crash-logger
|
|||
${BREAKPAD_EXCEPTION_HANDLER_LIBRARIES}
|
||||
${LLCRASHLOGGER_LIBRARIES}
|
||||
${LLWINDOW_LIBRARIES}
|
||||
${LLCACHE_LIBRARIES}
|
||||
${LLFILESYSTEM_LIBRARIES}
|
||||
${LLXML_LIBRARIES}
|
||||
${LLMESSAGE_LIBRARIES}
|
||||
${LLMATH_LIBRARIES}
|
||||
|
|
|
|||
Loading…
Reference in New Issue