Thu, 14 Nov 2024 23:22:35 +0100
add support for secret store credentials when connecting to repositories, resolves #496
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 | <ItemGroup Label="ProjectConfigurations"> | |
4 | <ProjectConfiguration Include="Debug|Win32"> | |
5 | <Configuration>Debug</Configuration> | |
6 | <Platform>Win32</Platform> | |
7 | </ProjectConfiguration> | |
8 | <ProjectConfiguration Include="Release|Win32"> | |
9 | <Configuration>Release</Configuration> | |
10 | <Platform>Win32</Platform> | |
11 | </ProjectConfiguration> | |
12 | <ProjectConfiguration Include="Debug|x64"> | |
13 | <Configuration>Debug</Configuration> | |
14 | <Platform>x64</Platform> | |
15 | </ProjectConfiguration> | |
16 | <ProjectConfiguration Include="Release|x64"> | |
17 | <Configuration>Release</Configuration> | |
18 | <Platform>x64</Platform> | |
19 | </ProjectConfiguration> | |
20 | </ItemGroup> | |
21 | <PropertyGroup Label="Globals"> | |
22 | <VCProjectVersion>16.0</VCProjectVersion> | |
23 | <Keyword>Win32Proj</Keyword> | |
24 | <ProjectGuid>{c29c0378-6548-48e8-9426-31922515212a}</ProjectGuid> | |
25 | <RootNamespace>libidav</RootNamespace> | |
26 | <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> | |
27 | </PropertyGroup> | |
28 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
29 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
30 | <ConfigurationType>Application</ConfigurationType> | |
31 | <UseDebugLibraries>true</UseDebugLibraries> | |
32 | <PlatformToolset>v143</PlatformToolset> | |
33 | <CharacterSet>Unicode</CharacterSet> | |
34 | </PropertyGroup> | |
35 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
36 | <ConfigurationType>Application</ConfigurationType> | |
37 | <UseDebugLibraries>false</UseDebugLibraries> | |
38 | <PlatformToolset>v143</PlatformToolset> | |
39 | <WholeProgramOptimization>true</WholeProgramOptimization> | |
40 | <CharacterSet>Unicode</CharacterSet> | |
41 | </PropertyGroup> | |
42 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |
43 | <ConfigurationType>StaticLibrary</ConfigurationType> | |
44 | <UseDebugLibraries>true</UseDebugLibraries> | |
45 | <PlatformToolset>v143</PlatformToolset> | |
46 | <CharacterSet>Unicode</CharacterSet> | |
47 | </PropertyGroup> | |
48 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | |
83
a612adaee43d
fix pathbar elmfunc creating an element for an empty string
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
77
diff
changeset
|
49 | <ConfigurationType>StaticLibrary</ConfigurationType> |
1 | 50 | <UseDebugLibraries>false</UseDebugLibraries> |
51 | <PlatformToolset>v143</PlatformToolset> | |
52 | <WholeProgramOptimization>true</WholeProgramOptimization> | |
53 | <CharacterSet>Unicode</CharacterSet> | |
54 | </PropertyGroup> | |
55 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
56 | <ImportGroup Label="ExtensionSettings"> | |
57 | </ImportGroup> | |
58 | <ImportGroup Label="Shared"> | |
59 | </ImportGroup> | |
60 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
61 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
62 | </ImportGroup> | |
63 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
64 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
65 | </ImportGroup> | |
66 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
67 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
68 | </ImportGroup> | |
69 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
70 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
71 | </ImportGroup> | |
72 | <PropertyGroup Label="UserMacros" /> | |
73 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
74 | <TargetExt>.dll</TargetExt> | |
75 | <OutDir>$(SolutionDir)..\..\build\vs\$(Platform)\$(Configuration)\</OutDir> | |
76 | <IntDir>..\..\..\build\vs\libidav\$(Platform)\$(Configuration)\</IntDir> | |
77 | </PropertyGroup> | |
83
a612adaee43d
fix pathbar elmfunc creating an element for an empty string
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
77
diff
changeset
|
78 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
a612adaee43d
fix pathbar elmfunc creating an element for an empty string
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
77
diff
changeset
|
79 | <OutDir>$(SolutionDir)..\..\build\vs\$(Platform)\$(Configuration)\</OutDir> |
a612adaee43d
fix pathbar elmfunc creating an element for an empty string
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
77
diff
changeset
|
80 | <IntDir>..\..\..\build\vs\libidav\$(Platform)\$(Configuration)\</IntDir> |
a612adaee43d
fix pathbar elmfunc creating an element for an empty string
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
77
diff
changeset
|
81 | </PropertyGroup> |
1 | 82 | <PropertyGroup Label="Vcpkg"> |
83 | <VcpkgEnableManifest>true</VcpkgEnableManifest> | |
84 | </PropertyGroup> | |
85 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
86 | <ClCompile> | |
87 | <WarningLevel>Level3</WarningLevel> | |
88 | <SDLCheck>true</SDLCheck> | |
89 | <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
90 | <ConformanceMode>true</ConformanceMode> | |
91 | </ClCompile> | |
92 | <Link> | |
93 | <SubSystem>Console</SubSystem> | |
94 | <GenerateDebugInformation>true</GenerateDebugInformation> | |
95 | </Link> | |
96 | </ItemDefinitionGroup> | |
97 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
98 | <ClCompile> | |
99 | <WarningLevel>Level3</WarningLevel> | |
100 | <FunctionLevelLinking>true</FunctionLevelLinking> | |
101 | <IntrinsicFunctions>true</IntrinsicFunctions> | |
102 | <SDLCheck>true</SDLCheck> | |
103 | <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
104 | <ConformanceMode>true</ConformanceMode> | |
105 | </ClCompile> | |
106 | <Link> | |
107 | <SubSystem>Console</SubSystem> | |
108 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
109 | <OptimizeReferences>true</OptimizeReferences> | |
110 | <GenerateDebugInformation>true</GenerateDebugInformation> | |
111 | </Link> | |
112 | </ItemDefinitionGroup> | |
113 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
114 | <ClCompile> | |
115 | <WarningLevel>Level3</WarningLevel> | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
116 | <SDLCheck>false</SDLCheck> |
1 | 117 | <PreprocessorDefinitions>_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
118 | <ConformanceMode>true</ConformanceMode> | |
119 | <LanguageStandard_C>stdc11</LanguageStandard_C> | |
120 | <AdditionalIncludeDirectories>..\..\..\ucx;..\vcpkg_installed\x64-windows\x64-windows\include</AdditionalIncludeDirectories> | |
121 | <AdditionalOptions> | |
122 | </AdditionalOptions> | |
123 | </ClCompile> | |
124 | <Link> | |
125 | <SubSystem>Console</SubSystem> | |
126 | <GenerateDebugInformation>true</GenerateDebugInformation> | |
127 | <AdditionalLibraryDirectories>..\vcpkg_installed\x64-windows\x64-windows\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | |
128 | <AdditionalDependencies>charset.lib;iconv.lib;libcurl.lib;libxml2.lib;lzma.lib;zlib.lib;bcrypt.lib;%(AdditionalDependencies)</AdditionalDependencies> | |
129 | </Link> | |
130 | <PostBuildEvent> | |
131 | <Command>xcopy /y $(SolutionDir)vcpkg_installed\x64-windows\x64-windows\bin\*.dll $(SolutionDir)..\..\build\vs\$(Platform)\$(Configuration)\</Command> | |
132 | </PostBuildEvent> | |
133 | </ItemDefinitionGroup> | |
134 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
135 | <ClCompile> | |
136 | <WarningLevel>Level3</WarningLevel> | |
137 | <FunctionLevelLinking>true</FunctionLevelLinking> | |
138 | <IntrinsicFunctions>true</IntrinsicFunctions> | |
139 | <SDLCheck>true</SDLCheck> | |
83
a612adaee43d
fix pathbar elmfunc creating an element for an empty string
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
77
diff
changeset
|
140 | <PreprocessorDefinitions>_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
1 | 141 | <ConformanceMode>true</ConformanceMode> |
83
a612adaee43d
fix pathbar elmfunc creating an element for an empty string
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
77
diff
changeset
|
142 | <LanguageStandard_C>stdc17</LanguageStandard_C> |
a612adaee43d
fix pathbar elmfunc creating an element for an empty string
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
77
diff
changeset
|
143 | <AdditionalIncludeDirectories>..\..\..\ucx;..\vcpkg_installed\x64-windows\x64-windows\include</AdditionalIncludeDirectories> |
1 | 144 | </ClCompile> |
145 | <Link> | |
146 | <SubSystem>Console</SubSystem> | |
147 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
148 | <OptimizeReferences>true</OptimizeReferences> | |
149 | <GenerateDebugInformation>true</GenerateDebugInformation> | |
150 | </Link> | |
151 | </ItemDefinitionGroup> | |
152 | <ItemGroup> | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
153 | <ClCompile Include="..\..\..\libidav\config.c" /> |
1 | 154 | <ClCompile Include="..\..\..\libidav\crypto.c" /> |
155 | <ClCompile Include="..\..\..\libidav\davqlexec.c" /> | |
156 | <ClCompile Include="..\..\..\libidav\davqlparser.c" /> | |
157 | <ClCompile Include="..\..\..\libidav\methods.c" /> | |
77
5de33c2d94c6
fix text/image preview loading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
158 | <ClCompile Include="..\..\..\libidav\pwdstore.c" /> |
1 | 159 | <ClCompile Include="..\..\..\libidav\resource.c" /> |
160 | <ClCompile Include="..\..\..\libidav\session.c" /> | |
161 | <ClCompile Include="..\..\..\libidav\utils.c" /> | |
162 | <ClCompile Include="..\..\..\libidav\versioning.c" /> | |
163 | <ClCompile Include="..\..\..\libidav\webdav.c" /> | |
164 | <ClCompile Include="..\..\..\libidav\xml.c" /> | |
165 | </ItemGroup> | |
166 | <ItemGroup> | |
2
fbdfaacc4182
update ucx, libidav and add first gui code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
167 | <ClInclude Include="..\..\..\libidav\config.h" /> |
1 | 168 | <ClInclude Include="..\..\..\libidav\crypto.h" /> |
169 | <ClInclude Include="..\..\..\libidav\davqlexec.h" /> | |
170 | <ClInclude Include="..\..\..\libidav\davqlparser.h" /> | |
171 | <ClInclude Include="..\..\..\libidav\methods.h" /> | |
77
5de33c2d94c6
fix text/image preview loading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
172 | <ClInclude Include="..\..\..\libidav\pwdstore.h" /> |
1 | 173 | <ClInclude Include="..\..\..\libidav\resource.h" /> |
174 | <ClInclude Include="..\..\..\libidav\session.h" /> | |
175 | <ClInclude Include="..\..\..\libidav\utils.h" /> | |
176 | <ClInclude Include="..\..\..\libidav\versioning.h" /> | |
177 | <ClInclude Include="..\..\..\libidav\webdav.h" /> | |
178 | <ClInclude Include="..\..\..\libidav\xml.h" /> | |
179 | </ItemGroup> | |
180 | <ItemGroup> | |
181 | <ProjectReference Include="..\ucx\ucx.vcxproj"> | |
182 | <Project>{27da0164-3475-43e2-a1a4-a5d07d305749}</Project> | |
183 | </ProjectReference> | |
184 | </ItemGroup> | |
185 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
186 | <ImportGroup Label="ExtensionTargets"> | |
187 | </ImportGroup> | |
188 | </Project> |