Files
neovim/cmake.deps/cmake/LibuvCMakeLists.txt
Justin M. Keyes f05a2891d3 build: rename build-related dirs
Problem:
Dirs "config", "packaging", and "third-party" are all closely related
but this is not obvious from the layout. This adds friction for new
contributors.

Solution:
- rename config/ to cmake.config/
- rename test/config/ to test/cmakeconfig/ because it is used in Lua
  tests: require('test.cmakeconfig.paths').
- rename packaging/ to cmake.packaging/
- rename third-party/ to cmake.deps/ (parallel with .deps/)
2022-06-28 04:02:29 -07:00

34 lines
965 B
Plaintext

cmake_minimum_required(VERSION 2.8.12)
project(libuv LANGUAGES C)
file(GLOB UV_SOURCES_COMMON src/*.c)
file(GLOB UV_SOURCES_WIN src/win/*.c)
add_library(uv ${UV_SOURCES_COMMON} ${UV_SOURCES_WIN})
target_compile_definitions(uv PRIVATE WIN32_LEAN_AND_MEAN "_WIN32_WINNT=0x0600")
target_link_libraries(uv iphlpapi psapi shell32 userenv ws2_32)
target_include_directories(uv PUBLIC ./include PRIVATE ./src)
if(BUILD_SHARED_LIBS)
set_target_properties(uv PROPERTIES DEFINE_SYMBOL BUILDING_UV_SHARED)
endif()
install(FILES
include/uv.h
DESTINATION include)
install(FILES
include/uv/errno.h
include/uv/threadpool.h
include/uv/tree.h
include/uv/version.h
include/uv/win.h
DESTINATION include/uv)
include(GNUInstallDirs)
install(TARGETS uv
PUBLIC_HEADER
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})