diff options
| author | Konstantin Podsvirov <konstantin@podsvirov.pro> | 2017-08-28 13:54:19 +0300 |
|---|---|---|
| committer | Konstantin Podsvirov <konstantin@podsvirov.pro> | 2017-09-28 00:21:25 +0300 |
| commit | ba0cc3f1d7edb7e2fee271761b2f37d0c740604f (patch) | |
| tree | a09d75794d07bac01d6fbb832330188cb2654dc0 /toolsrc/vcpkglib | |
| parent | f160164219ab0c8422fdcefde3a3def89e5a59de (diff) | |
| download | vcpkg-ba0cc3f1d7edb7e2fee271761b2f37d0c740604f.tar.gz vcpkg-ba0cc3f1d7edb7e2fee271761b2f37d0c740604f.zip | |
WIP: Export IFW
Add export to binary crossplatform repository/installer
with GUI based on QtIFW:
http://doc.qt.io/qtinstallerframework/ifw-overview.html
For correct operation of these changes,
you must use the corrected QtIFW:
https://codereview.qt-project.org/#/c/203958
Diffstat (limited to 'toolsrc/vcpkglib')
| -rw-r--r-- | toolsrc/vcpkglib/vcpkglib.vcxproj | 2 | ||||
| -rw-r--r-- | toolsrc/vcpkglib/vcpkglib.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/toolsrc/vcpkglib/vcpkglib.vcxproj b/toolsrc/vcpkglib/vcpkglib.vcxproj index edecd7720..3f17ecb3c 100644 --- a/toolsrc/vcpkglib/vcpkglib.vcxproj +++ b/toolsrc/vcpkglib/vcpkglib.vcxproj @@ -166,6 +166,7 @@ <ClInclude Include="..\include\vcpkg_Checks.h" /> <ClInclude Include="..\include\VcpkgCmdArguments.h" /> <ClInclude Include="..\include\vcpkg_Commands.h" /> + <ClInclude Include="..\include\vcpkg_Commands_Export_IFW.h" /> <ClInclude Include="..\include\vcpkg_Dependencies.h" /> <ClInclude Include="..\include\vcpkg_Enums.h" /> <ClInclude Include="..\include\vcpkg_Files.h" /> @@ -185,6 +186,7 @@ <ClCompile Include="..\src\commands_depends.cpp" /> <ClCompile Include="..\src\commands_env.cpp" /> <ClCompile Include="..\src\commands_export.cpp" /> + <ClCompile Include="..\src\commands_export_ifw.cpp" /> <ClCompile Include="..\src\LineInfo.cpp" /> <ClCompile Include="..\src\ParagraphParseResult.cpp" /> <ClCompile Include="..\src\vcpkg_Build.cpp" /> diff --git a/toolsrc/vcpkglib/vcpkglib.vcxproj.filters b/toolsrc/vcpkglib/vcpkglib.vcxproj.filters index 2fbf3d929..7eb077019 100644 --- a/toolsrc/vcpkglib/vcpkglib.vcxproj.filters +++ b/toolsrc/vcpkglib/vcpkglib.vcxproj.filters @@ -165,6 +165,9 @@ <ClCompile Include="..\src\commands_export.cpp"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\src\commands_export_ifw.cpp"> + <Filter>Source Files</Filter> + </ClCompile> <ClCompile Include="..\src\VersionT.cpp"> <Filter>Source Files</Filter> </ClCompile> @@ -218,6 +221,9 @@ <ClInclude Include="..\include\vcpkg_Commands.h"> <Filter>Header Files</Filter> </ClInclude> + <ClInclude Include="..\include\vcpkg_Commands_Export_IFW.h"> + <Filter>Header Files</Filter> + </ClInclude> <ClInclude Include="..\include\vcpkg_Dependencies.h"> <Filter>Header Files</Filter> </ClInclude> |
