mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 13:49:39 +08:00
738720268b
* [libyaml] Export the pkgconfig files * version * Fix cmake config file path * version
16 lines
561 B
Diff
16 lines
561 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 4f81148..8006536 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -158,3 +158,10 @@ install(
|
|
FILES ${config_version_file}
|
|
DESTINATION ${INSTALL_CMAKE_DIR} COMPONENT Development
|
|
)
|
|
+
|
|
+set(prefix ${CMAKE_INSTALL_PREFIX})
|
|
+set(exec_prefix ${CMAKE_INSTALL_PREFIX})
|
|
+set(includedir ${CMAKE_INSTALL_PREFIX}/include)
|
|
+set(libdir ${CMAKE_INSTALL_PREFIX}/lib)
|
|
+configure_file(yaml-0.1.pc.in ${PROJECT_BINARY_DIR}/yaml-0.1.pc @ONLY)
|
|
+install(FILES ${PROJECT_BINARY_DIR}/yaml-0.1.pc DESTINATION lib/pkgconfig)
|