vcpkg/ports/mongoose/CMakeLists.txt
myd7349 001df4c9e8 [mongoose] Add new port (#7089)
* [mongoose] Add new port

* [mongoose] About UWP

* [mongoose] Take advantage of cmake 3.14 improvements
2019-07-16 15:43:41 -07:00

21 lines
564 B
CMake

cmake_minimum_required(VERSION 3.14)
project(mongoose C)
include(GNUInstallDirs)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
add_library(mongoose mongoose.c)
target_include_directories(mongoose PUBLIC $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>)
set_target_properties(mongoose PROPERTIES PUBLIC_HEADER mongoose.h)
install(TARGETS mongoose EXPORT unofficial-mongoose-config)
install(
EXPORT unofficial-mongoose-config
NAMESPACE unofficial::mongoose::
DESTINATION share/unofficial-mongoose
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
)