mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-04 10:45:50 +00:00
* update EP and find package requirements * minor protobuf/libarchive build fixes * change travis release builds to nounity to ameliorate vm memory exhaustion. FIXES: #3223, #3232
16 lines
339 B
PHP
16 lines
339 B
PHP
set (THIRDPARTY_LIBS "")
|
|
|
|
if(WITH_SNAPPY)
|
|
add_definitions(-DSNAPPY)
|
|
include_directories(${snappy_INCLUDE_DIRS})
|
|
set (THIRDPARTY_LIBS ${THIRDPARTY_LIBS} ${snappy_LIBRARIES})
|
|
endif()
|
|
|
|
if(WITH_LZ4)
|
|
add_definitions(-DLZ4)
|
|
include_directories(${lz4_INCLUDE_DIRS})
|
|
set (THIRDPARTY_LIBS ${THIRDPARTY_LIBS} ${lz4_LIBRARIES})
|
|
endif()
|
|
|
|
|