mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 21:39:18 +08:00
069695daed
- [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [ ] ~SHA512s are updated for each updated download.~ - [x] The "supports" clause reflects platforms that may be fixed by this new version. - [ ] ~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~ - [ ] ~Any patches that are no longer applied are deleted from the port's directory.~ - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file.
47 lines
1.1 KiB
CMake
47 lines
1.1 KiB
CMake
cmake_minimum_required(VERSION 3.20.0)
|
|
project(luasec)
|
|
|
|
find_path(LUA_INCLUDE_DIR lua.h PATH_SUFFIXES lua)
|
|
find_library(LUA_LIBRARY lua)
|
|
find_package(OpenSSL)
|
|
|
|
set(LUASEC_INCLUDES ${LUA_INCLUDE_DIR} src)
|
|
set(LUASEC_LIBRARIES
|
|
${LUA_LIBRARY}
|
|
OpenSSL::SSL
|
|
OpenSSL::Crypto
|
|
OpenSSL::applink)
|
|
if(WIN32)
|
|
set(PLATFORM_LIBRARIES ws2_32)
|
|
endif()
|
|
|
|
add_library(lua-ssl
|
|
src/config.c
|
|
src/ssl.c
|
|
src/context.c
|
|
src/x509.c
|
|
src/ec.c
|
|
src/options.c
|
|
src/luasocket/buffer.c
|
|
src/luasocket/io.c
|
|
src/luasocket/timeout.c)
|
|
if(WIN32)
|
|
target_sources(lua-ssl PRIVATE
|
|
src/luasocket/wsocket.c)
|
|
else()
|
|
target_sources(lua-ssl PRIVATE
|
|
src/luasocket/usocket.c)
|
|
endif()
|
|
|
|
target_include_directories(lua-ssl PRIVATE ${LUASEC_INCLUDES})
|
|
target_link_libraries(lua-ssl PRIVATE ${LUASEC_LIBRARIES} ${PLATFORM_LIBRARIES})
|
|
set_target_properties(lua-ssl PROPERTIES PREFIX "")
|
|
|
|
install(TARGETS lua-ssl
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib)
|
|
|
|
install(FILES src/ssl.lua DESTINATION share/lua)
|
|
install(FILES src/https.lua DESTINATION share/lua/ssl)
|