mirror of https://github.com/libAthena/athena.git
minor CMake change
This commit is contained in:
parent
f46edcd4b8
commit
f381eb3059
|
@ -11,7 +11,7 @@ endif()
|
||||||
# Find dependencies
|
# Find dependencies
|
||||||
include(FindLLVM.cmake)
|
include(FindLLVM.cmake)
|
||||||
if(NOT LLVM_FOUND)
|
if(NOT LLVM_FOUND)
|
||||||
message("-- Unable to locate LLVM installation; skipping atdna")
|
message(STATUS "Unable to locate LLVM installation; skipping atdna")
|
||||||
else()
|
else()
|
||||||
list(APPEND LLVM_LIBS
|
list(APPEND LLVM_LIBS
|
||||||
clangFrontend
|
clangFrontend
|
||||||
|
|
|
@ -3,7 +3,7 @@ find_library(LZO_LIB lzo2)
|
||||||
endif()
|
endif()
|
||||||
if(WIN32 OR APPLE OR LZO_LIB STREQUAL LZO_LIB-NOTFOUND)
|
if(WIN32 OR APPLE OR LZO_LIB STREQUAL LZO_LIB-NOTFOUND)
|
||||||
include_directories(include)
|
include_directories(include)
|
||||||
message("-- Using Athena's built-in lzo")
|
message(STATUS "Using Athena's built-in lzo")
|
||||||
add_library(lzo2
|
add_library(lzo2
|
||||||
src/lzo1.c
|
src/lzo1.c
|
||||||
src/lzo1_99.c
|
src/lzo1_99.c
|
||||||
|
|
|
@ -2,7 +2,7 @@ if(NOT WIN32)
|
||||||
find_package(ZLIB)
|
find_package(ZLIB)
|
||||||
endif()
|
endif()
|
||||||
if(WIN32 OR NOT ZLIB_FOUND)
|
if(WIN32 OR NOT ZLIB_FOUND)
|
||||||
message("-- Using Athena's built-in zlib")
|
message(STATUS "Using Athena's built-in zlib")
|
||||||
add_library(z
|
add_library(z
|
||||||
adler32.c
|
adler32.c
|
||||||
compress.c
|
compress.c
|
||||||
|
|
Loading…
Reference in New Issue