mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 04:38:59 +08:00
18ab20050c
* add new function vcpkg_fixup_pkgconfig * make message with changed files a debug_message * add two more cases to the debug *.pc files * comment out prefix. use --define-variable=prefix=INSTALL_PATH * changed the comment header. * add missing word * finish vcpkg_fixup_pkgconfig.cmake * Update vcpkg_fixup_pkgconfig.cmake Note: since CMake is run in script mode the description of VCPKG_FIXUP_PKGCONFIG_CALLED cannot be viewed * transfer changes from x windows pr * fix typo in regex * add port for vs yasm integration within VCPKG * add gmp * add nettle * add missing windows flag in control * CI workaround CI seems to not pass env YASMPATH correctly to cl. Since YASM is on PATH -> remove $(VCInstallDir) as the default for YasmPath * overwrite correct import. * If CI does not give logs just display some extra info * target replacement was mising * apply same replacements for nettle * remove unnecessary status message * remove unnecessary platform code * update supports field for vs-yasm * apply replacement also to libhogweed * fix static builds * remove not working code * remove debug/release options * add additional replacement for the case the SOURCE dir has already been patched within VCPKG * add triplet selection to vcpkg_install_msbuild * fix missing ; in patches * remove gmp dependency in static builds since they are not required * cleanup portfiles * add missing vcpkg_fixup_pkgconfig() call
39 lines
1.9 KiB
Diff
39 lines
1.9 KiB
Diff
diff --git a/SMP/libgmp.vcxproj b/SMP/libgmp.vcxproj
|
|
index 2c5b8cdc6..157215394 100644
|
|
--- a/SMP/libgmp.vcxproj
|
|
+++ b/SMP/libgmp.vcxproj
|
|
@@ -1574,14 +1574,14 @@
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<IntDir>$(SolutionDir)obj\$(Configuration)\$(Platform)\$(ProjectName)\</IntDir>
|
|
- <TargetName>libgmpd</TargetName>
|
|
+ <TargetName>gmpd</TargetName>
|
|
<OutDir>$(ProjectDir)..\msvc\</OutDir>
|
|
<CustomBuildAfterTargets>Clean</CustomBuildAfterTargets>
|
|
<MSBuildWarningsAsMessages>MSB8012</MSBuildWarningsAsMessages>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugWinRT|x64'">
|
|
<IntDir>$(SolutionDir)obj\$(Configuration)\$(Platform)\$(ProjectName)\</IntDir>
|
|
- <TargetName>libgmpd</TargetName>
|
|
+ <TargetName>gmpd</TargetName>
|
|
<OutDir>$(ProjectDir)..\msvc\</OutDir>
|
|
<CustomBuildAfterTargets>Clean</CustomBuildAfterTargets>
|
|
<MSBuildWarningsAsMessages>MSB8012</MSBuildWarningsAsMessages>
|
|
@@ -1630,14 +1630,14 @@
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<IntDir>$(SolutionDir)obj\$(Configuration)\$(Platform)\$(ProjectName)\</IntDir>
|
|
- <TargetName>libgmp</TargetName>
|
|
+ <TargetName>gmp</TargetName>
|
|
<OutDir>$(ProjectDir)..\msvc\</OutDir>
|
|
<CustomBuildAfterTargets>Clean</CustomBuildAfterTargets>
|
|
<MSBuildWarningsAsMessages>MSB8012</MSBuildWarningsAsMessages>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWinRT|x64'">
|
|
<IntDir>$(SolutionDir)obj\$(Configuration)\$(Platform)\$(ProjectName)\</IntDir>
|
|
- <TargetName>libgmp</TargetName>
|
|
+ <TargetName>gmp</TargetName>
|
|
<OutDir>$(ProjectDir)..\msvc\</OutDir>
|
|
<CustomBuildAfterTargets>Clean</CustomBuildAfterTargets>
|
|
<MSBuildWarningsAsMessages>MSB8012</MSBuildWarningsAsMessages>
|