minor CMake change

This commit is contained in:
Jack Andersen 2015-11-17 10:37:08 -10:00
parent f46edcd4b8
commit f381eb3059
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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