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
|
||||
include(FindLLVM.cmake)
|
||||
if(NOT LLVM_FOUND)
|
||||
message("-- Unable to locate LLVM installation; skipping atdna")
|
||||
message(STATUS "Unable to locate LLVM installation; skipping atdna")
|
||||
else()
|
||||
list(APPEND LLVM_LIBS
|
||||
clangFrontend
|
||||
|
|
|
@ -3,7 +3,7 @@ find_library(LZO_LIB lzo2)
|
|||
endif()
|
||||
if(WIN32 OR APPLE OR LZO_LIB STREQUAL LZO_LIB-NOTFOUND)
|
||||
include_directories(include)
|
||||
message("-- Using Athena's built-in lzo")
|
||||
message(STATUS "Using Athena's built-in lzo")
|
||||
add_library(lzo2
|
||||
src/lzo1.c
|
||||
src/lzo1_99.c
|
||||
|
|
|
@ -2,7 +2,7 @@ if(NOT WIN32)
|
|||
find_package(ZLIB)
|
||||
endif()
|
||||
if(WIN32 OR NOT ZLIB_FOUND)
|
||||
message("-- Using Athena's built-in zlib")
|
||||
message(STATUS "Using Athena's built-in zlib")
|
||||
add_library(z
|
||||
adler32.c
|
||||
compress.c
|
||||
|
|
Loading…
Reference in New Issue