Updated documentation and added a message if libedit is not found.
This commit is contained in:
@ -1,7 +1,10 @@
|
||||
add_executable(maxadmin maxadmin.c)
|
||||
find_library(HIST edit)
|
||||
if(HIST)
|
||||
message(STATUS "Building MaxAdmin with editline: ${HIST}")
|
||||
add_definitions(-DHISTORY)
|
||||
target_link_libraries(maxadmin ${HIST})
|
||||
else()
|
||||
message(STATUS "Could not find editline library. MaxAdmin will be built without it.")
|
||||
endif()
|
||||
install(TARGETS maxadmin DESTINATION bin)
|
||||
install(TARGETS maxadmin DESTINATION bin)
|
||||
|
Reference in New Issue
Block a user