mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 05:59:07 +08:00
80f8da23a8
* Generate Imath.pc * update version * add dependency imath minizip-ng * updata version * add usage * update version * add pc * update version * add pc * update version
74 lines
1.8 KiB
CMake
74 lines
1.8 KiB
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(readline C)
|
|
|
|
add_definitions(-DREADLINE_LIBRARY)
|
|
add_definitions(-DHAVE_CONFIG_H)
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
if(BUILD_SHARED_LIBS)
|
|
add_definitions(-DBUILD_READLINE_DLL)
|
|
else()
|
|
add_definitions(-DREADLINE_STATIC)
|
|
endif()
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR} # thats where the config.h is located
|
|
)
|
|
|
|
add_library(readline
|
|
readline.c
|
|
funmap.c
|
|
keymaps.c
|
|
vi_mode.c
|
|
parens.c
|
|
rltty.c
|
|
complete.c
|
|
bind.c
|
|
isearch.c
|
|
display.c
|
|
signals.c
|
|
util.c
|
|
kill.c
|
|
undo.c
|
|
macro.c
|
|
input.c
|
|
callback.c
|
|
terminal.c
|
|
xmalloc.c
|
|
history.c
|
|
histsearch.c
|
|
histexpand.c
|
|
histfile.c
|
|
nls.c
|
|
search.c
|
|
shell.c
|
|
savestring.c
|
|
tilde.c
|
|
text.c
|
|
misc.c
|
|
compat.c
|
|
mbutil.c
|
|
support/wcwidth.c)
|
|
|
|
file(GLOB headers "${CMAKE_CURRENT_SOURCE_DIR}/*.h")
|
|
install(FILES ${headers} DESTINATION include/readline)
|
|
|
|
target_include_directories(readline PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<INSTALL_INTERFACE:include>)
|
|
|
|
install(TARGETS readline
|
|
EXPORT unofficial-readline-win32-config
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
|
|
install(EXPORT unofficial-readline-win32-config
|
|
NAMESPACE unofficial::readline-win32::
|
|
DESTINATION share/unofficial-readline-win32)
|
|
|
|
Set(prefix "${CMAKE_INSTALL_PREFIX}")
|
|
Set(exec_prefix "\${prefix}")
|
|
Set(libdir "\${prefix}/lib")
|
|
Set(includedir "\${prefix}/include")
|
|
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/readline.pc.in" "${CMAKE_CURRENT_BINARY_DIR}/readline.pc" @ONLY)
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/readline.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|