mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 17:59:00 +08:00
6cb714f850
* [systemc] Add new port (Microsoft#5250) * [systemc] Fix debug targets * [systemc] Use vcpkg_extract_source_archive_ex() * [systemc] Disable vcpkg_test_cmake() for now due to issues * [systemc] Fixup cmake targets
24 lines
1.4 KiB
Diff
24 lines
1.4 KiB
Diff
--- CMakeLists.txt Sat Oct 13 00:19:07 2018
|
|
+++ CMakeLists.txt.fixed Mon Jan 28 15:51:38 2019
|
|
@@ -555,7 +555,7 @@
|
|
endif (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
|
|
|
# Set the installation paths for headers, libraries, and documentation.
|
|
-set (CMAKE_INSTALL_DOCDIR "share/doc/systemc" CACHE PATH
|
|
+set (CMAKE_INSTALL_DOCDIR "share/systemc" CACHE PATH
|
|
"Documentation installation directory") # otherwise mixed-case
|
|
if (INSTALL_TO_LIB_BUILD_TYPE_DIR)
|
|
# Install libraries to lib-${CMAKE_BUILD_TYPE} so that different build variants
|
|
@@ -589,9 +589,9 @@
|
|
set (SystemCTLM_INSTALL_CMAKEDIR share/cmake/SystemCTLM CACHE PATH
|
|
"CMake package configuration installation directory" FORCE)
|
|
else (INSTALL_TO_LIB_BUILD_TYPE_DIR OR INSTALL_TO_LIB_TARGET_ARCH_DIR)
|
|
- set (SystemCLanguage_INSTALL_CMAKEDIR ${CMAKE_INSTALL_LIBDIR}/cmake/SystemCLanguage CACHE PATH
|
|
+ set (SystemCLanguage_INSTALL_CMAKEDIR share/SystemCLanguage CACHE PATH
|
|
"CMake package configuration installation directory for the SystemCLanguage package.")
|
|
- set (SystemCTLM_INSTALL_CMAKEDIR ${CMAKE_INSTALL_LIBDIR}/cmake/SystemCTLM CACHE PATH
|
|
+ set (SystemCTLM_INSTALL_CMAKEDIR share/SystemCTLM CACHE PATH
|
|
"CMake package configuration installation directory for the SystemCTLM package.")
|
|
endif (INSTALL_TO_LIB_BUILD_TYPE_DIR OR INSTALL_TO_LIB_TARGET_ARCH_DIR)
|
|
mark_as_advanced(SystemCLanguage_INSTALL_CMAKEDIR SystemCTLM_INSTALL_CMAKEDIR)
|