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

View File

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

View File

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