forked from AuroraMiddleware/gtk
Visual Studio builds: Update from [gdk|gtk]-3 to [gdk|gtk]-4
This updates all the projects files to be be named appropriately as we move from GTK-3.x to 4.x, and updates the autotools files so that things are distributed and generated properly. Also remove deprecated/gtkstatusicon-quartz.c from gtk/Makefile.am, as that was causing 'make dist' to fail as that file has been removed. This fixes 'make dist' with the updated existing project files in proper order. Note that this does not include the new GSK, which will be added later, so the project files do not yet build the whole stack on Visual Studio at this point.
This commit is contained in:
parent
51b7146138
commit
8b8f378050
@ -3,11 +3,11 @@ include $(top_srcdir)/Makefile.decl
|
|||||||
if HAVE_INTROSPECTION
|
if HAVE_INTROSPECTION
|
||||||
GENERATED_ITEMS = \
|
GENERATED_ITEMS = \
|
||||||
introspection.body.mak \
|
introspection.body.mak \
|
||||||
Gdk_3_0_gir_list \
|
Gdk_4_0_gir_list \
|
||||||
GdkWin32_3_0_gir_list \
|
GdkWin32_4_0_gir_list \
|
||||||
Gtk_3_0_gir_list
|
Gtk_4_0_gir_list
|
||||||
|
|
||||||
MSVC_INTROSPECTION_INTERMEDIATE_FILES = Gdk-3.0.gir.msvc.introspect GdkWin32-3.0.gir.msvc.introspect Gtk-3.0.gir.msvc.introspect
|
MSVC_INTROSPECTION_INTERMEDIATE_FILES = Gdk-4.0.gir.msvc.introspect GdkWin32-4.0.gir.msvc.introspect Gtk-4.0.gir.msvc.introspect
|
||||||
|
|
||||||
introspection.body.mak: $(MSVC_INTROSPECTION_INTERMEDIATE_FILES)
|
introspection.body.mak: $(MSVC_INTROSPECTION_INTERMEDIATE_FILES)
|
||||||
-$(RM) introspection.body.mak
|
-$(RM) introspection.body.mak
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
!include detectenv-msvc.mak
|
!include detectenv-msvc.mak
|
||||||
|
|
||||||
APIVERSION = 3.0
|
APIVERSION = 4.0
|
||||||
|
|
||||||
CHECK_PACKAGE = gdk-pixbuf-2.0 atk pangocairo gio-2.0
|
CHECK_PACKAGE = gdk-pixbuf-2.0 atk pangocairo gio-2.0
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ def main(argv):
|
|||||||
gdk_backends += ' broadway'
|
gdk_backends += ' broadway'
|
||||||
cairo_backends += ' cairo'
|
cairo_backends += ' cairo'
|
||||||
|
|
||||||
pkg_replace_items = {'@GTK_API_VERSION@': '3.0',
|
pkg_replace_items = {'@GTK_API_VERSION@': '4.0',
|
||||||
'@GDK_BACKENDS@': gdk_backends}
|
'@GDK_BACKENDS@': gdk_backends}
|
||||||
|
|
||||||
pkg_required_packages = 'gdk-pixbuf >= ' + gdk_pixbuf_min_ver + ' ' + \
|
pkg_required_packages = 'gdk-pixbuf >= ' + gdk_pixbuf_min_ver + ' ' + \
|
||||||
@ -58,10 +58,10 @@ def main(argv):
|
|||||||
'@GDK_PRIVATE_PACKAGES@': gio_package + ' ' + cairo_backends,
|
'@GDK_PRIVATE_PACKAGES@': gio_package + ' ' + cairo_backends,
|
||||||
'@GDK_EXTRA_LIBS@': gdk_win32_sys_libs + broadway_extra_libs,
|
'@GDK_EXTRA_LIBS@': gdk_win32_sys_libs + broadway_extra_libs,
|
||||||
'@GDK_EXTRA_CFLAGS@': '',
|
'@GDK_EXTRA_CFLAGS@': '',
|
||||||
'gdk-3': 'gdk-3.0'}
|
'gdk-4': 'gdk-4.0'}
|
||||||
|
|
||||||
gtk_pc_replace_items = {'@host@': gdk_args.host,
|
gtk_pc_replace_items = {'@host@': gdk_args.host,
|
||||||
'@GTK_BINARY_VERSION@': '3.0.0',
|
'@GTK_BINARY_VERSION@': '4.0.0',
|
||||||
'@GTK_PACKAGES@': 'atk >= ' + atk_min_ver + ' ' + \
|
'@GTK_PACKAGES@': 'atk >= ' + atk_min_ver + ' ' + \
|
||||||
pkg_required_packages + ' ' + \
|
pkg_required_packages + ' ' + \
|
||||||
gio_package,
|
gio_package,
|
||||||
@ -69,29 +69,21 @@ def main(argv):
|
|||||||
'@GTK_EXTRA_CFLAGS@': '',
|
'@GTK_EXTRA_CFLAGS@': '',
|
||||||
'@GTK_EXTRA_LIBS@': '',
|
'@GTK_EXTRA_LIBS@': '',
|
||||||
'@GTK_EXTRA_CFLAGS@': '',
|
'@GTK_EXTRA_CFLAGS@': '',
|
||||||
'gtk-3': 'gtk-3.0'}
|
'gtk-4': 'gtk-4.0'}
|
||||||
|
|
||||||
gail_pc_replace_items = {'gailutil-3': 'gailutil-3.0'}
|
|
||||||
|
|
||||||
pkg_replace_items.update(base_pc.base_replace_items)
|
pkg_replace_items.update(base_pc.base_replace_items)
|
||||||
gdk_pc_replace_items.update(pkg_replace_items)
|
gdk_pc_replace_items.update(pkg_replace_items)
|
||||||
gtk_pc_replace_items.update(pkg_replace_items)
|
gtk_pc_replace_items.update(pkg_replace_items)
|
||||||
gail_pc_replace_items.update(base_pc.base_replace_items)
|
|
||||||
|
|
||||||
# Generate gdk-3.0.pc
|
# Generate gdk-4.0.pc
|
||||||
replace_multi(base_pc.top_srcdir + '/gdk-3.0.pc.in',
|
replace_multi(base_pc.top_srcdir + '/gdk-4.0.pc.in',
|
||||||
base_pc.srcdir + '/gdk-3.0.pc',
|
base_pc.srcdir + '/gdk-4.0.pc',
|
||||||
gdk_pc_replace_items)
|
gdk_pc_replace_items)
|
||||||
|
|
||||||
# Generate gtk+-3.0.pc
|
# Generate gtk+-4.0.pc
|
||||||
replace_multi(base_pc.top_srcdir + '/gtk+-3.0.pc.in',
|
replace_multi(base_pc.top_srcdir + '/gtk+-4.0.pc.in',
|
||||||
base_pc.srcdir + '/gtk+-3.0.pc',
|
base_pc.srcdir + '/gtk+-4.0.pc',
|
||||||
gtk_pc_replace_items)
|
gtk_pc_replace_items)
|
||||||
|
|
||||||
# Generate gail-3.0.pc
|
|
||||||
replace_multi(base_pc.top_srcdir + '/gail-3.0.pc.in',
|
|
||||||
base_pc.srcdir + '/gail-3.0.pc',
|
|
||||||
gail_pc_replace_items)
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
sys.exit(main(sys.argv))
|
sys.exit(main(sys.argv))
|
||||||
|
@ -1,49 +1,46 @@
|
|||||||
include $(top_srcdir)/Makefile.decl
|
include $(top_srcdir)/Makefile.decl
|
||||||
|
|
||||||
GENERATED_ITEMS = \
|
GENERATED_ITEMS = \
|
||||||
gdk3-win32.vcxproj \
|
gdk4-win32.vcxproj \
|
||||||
gdk3-win32.vcxproj.filters \
|
gdk4-win32.vcxproj.filters \
|
||||||
gdk3-broadway.vcxproj \
|
gdk4-broadway.vcxproj \
|
||||||
gdk3-broadway.vcxproj.filters \
|
gdk4-broadway.vcxproj.filters \
|
||||||
broadwayd.vcxproj \
|
broadwayd.vcxproj \
|
||||||
broadwayd.vcxproj.filters \
|
broadwayd.vcxproj.filters \
|
||||||
gdk-3.vcxproj \
|
gdk-4.vcxproj \
|
||||||
gdk-3.vcxproj.filters \
|
gdk-4.vcxproj.filters \
|
||||||
gtk-3.vcxproj \
|
gtk-4.vcxproj \
|
||||||
gtk-3.vcxproj.filters \
|
gtk-4.vcxproj.filters \
|
||||||
gtk3-demo.vcxproj \
|
gtk4-demo.vcxproj \
|
||||||
gtk3-demo.vcxproj.filters \
|
gtk4-demo.vcxproj.filters \
|
||||||
gtk3-demo-application.vcxproj \
|
gtk4-demo-application.vcxproj \
|
||||||
gtk3-demo-application.vcxproj.filters \
|
gtk4-demo-application.vcxproj.filters \
|
||||||
gtk3-icon-browser.vcxproj \
|
gtk4-icon-browser.vcxproj \
|
||||||
gtk3-icon-browser.vcxproj.filters \
|
gtk4-icon-browser.vcxproj.filters \
|
||||||
gailutil-3.vcxproj \
|
gtk4-install.props \
|
||||||
gailutil-3.vcxproj.filters \
|
gtk4-version-paths.props
|
||||||
gtk3-install.props \
|
|
||||||
gtk3-version-paths.props
|
|
||||||
|
|
||||||
MSVC10_HEADERS_LISTS = \
|
MSVC10_HEADERS_LISTS = \
|
||||||
gdk3-win32.vs10.headers \
|
gdk4-win32.vs10.headers \
|
||||||
gdk3-broadway.vs10.headers \
|
gdk4-broadway.vs10.headers \
|
||||||
gdk-3.vs10.headers \
|
gdk-4.vs10.headers \
|
||||||
gtk-3.vs10.headers \
|
gtk-4.vs10.headers
|
||||||
gailutil-3.vs10.headers
|
|
||||||
|
|
||||||
EXTRA_DIST += \
|
EXTRA_DIST += \
|
||||||
README.txt \
|
README.txt \
|
||||||
gtk+.sln \
|
gtk+-4.sln \
|
||||||
gtk3-prebuild.vcxproj \
|
gtk4-prebuild.vcxproj \
|
||||||
gtk3-prebuild.vcxproj.filters \
|
gtk4-prebuild.vcxproj.filters \
|
||||||
gdk3-win32.vcxprojin \
|
gdk4-win32.vcxprojin \
|
||||||
gdk3-win32.vcxproj.filtersin \
|
gdk4-win32.vcxproj.filtersin \
|
||||||
gdk3-broadway.vcxprojin \
|
gdk4-broadway.vcxprojin \
|
||||||
gdk3-broadway.vcxproj.filtersin \
|
gdk4-broadway.vcxproj.filtersin \
|
||||||
broadwayd.vcxprojin \
|
broadwayd.vcxprojin \
|
||||||
broadwayd.vcxproj.filtersin \
|
broadwayd.vcxproj.filtersin \
|
||||||
gdk-3.vcxprojin \
|
gdk-4.vcxprojin \
|
||||||
gdk-3.vcxproj.filtersin \
|
gdk-4.vcxproj.filtersin \
|
||||||
gtk-3.vcxprojin \
|
gtk-4.vcxprojin \
|
||||||
gtk-3.vcxproj.filtersin \
|
gtk-4.vcxproj.filtersin \
|
||||||
gtk-builder-tool.vcxproj \
|
gtk-builder-tool.vcxproj \
|
||||||
gtk-builder-tool.vcxproj.filters \
|
gtk-builder-tool.vcxproj.filters \
|
||||||
gtk-encode-symbolic-svg.vcxproj \
|
gtk-encode-symbolic-svg.vcxproj \
|
||||||
@ -52,29 +49,27 @@ EXTRA_DIST += \
|
|||||||
gtk-query-settings.vcxproj.filters \
|
gtk-query-settings.vcxproj.filters \
|
||||||
gtk-update-icon-cache.vcxproj \
|
gtk-update-icon-cache.vcxproj \
|
||||||
gtk-update-icon-cache.vcxproj.filters \
|
gtk-update-icon-cache.vcxproj.filters \
|
||||||
gtk3-demo.vcxprojin \
|
gtk4-demo.vcxprojin \
|
||||||
gtk3-demo.vcxproj.filtersin \
|
gtk4-demo.vcxproj.filtersin \
|
||||||
gtk3-demo-application.vcxprojin \
|
gtk4-demo-application.vcxprojin \
|
||||||
gtk3-demo-application.vcxproj.filtersin \
|
gtk4-demo-application.vcxproj.filtersin \
|
||||||
gtk3-icon-browser.vcxprojin \
|
gtk4-icon-browser.vcxprojin \
|
||||||
gtk3-icon-browser.vcxproj.filtersin \
|
gtk4-icon-browser.vcxproj.filtersin \
|
||||||
gailutil-3.vcxprojin \
|
gtk4-install.vcxproj \
|
||||||
gailutil-3.vcxproj.filtersin \
|
gtk4-install.vcxproj.filters \
|
||||||
gtk3-install.vcxproj \
|
gtk4-build-defines.props \
|
||||||
gtk3-install.vcxproj.filters \
|
gtk4-copy-gdk-broadway.props \
|
||||||
gtk3-build-defines.props \
|
gtk4-gen-srcs.props \
|
||||||
gtk3-copy-gdk-broadway.props \
|
gtk4-ignore-broadway.props \
|
||||||
gtk3-gen-srcs.props \
|
gtk4-install.propsin \
|
||||||
gtk3-ignore-broadway.props \
|
gtk4-version-paths.props.in \
|
||||||
gtk3-install.propsin \
|
|
||||||
gtk3-version-paths.props.in \
|
|
||||||
$(GENERATED_ITEMS)
|
$(GENERATED_ITEMS)
|
||||||
|
|
||||||
DISTCLEANFILES = \
|
DISTCLEANFILES = \
|
||||||
$(GENERATED_ITEMS)
|
$(GENERATED_ITEMS)
|
||||||
|
|
||||||
gtk3-install.props: $(top_srcdir)/build/win32/vs10/gtk3-install.propsin $(MSVC10_HEADERS_LISTS)
|
gtk4-install.props: $(top_srcdir)/build/win32/vs10/gtk4-install.propsin $(MSVC10_HEADERS_LISTS)
|
||||||
$(CPP) -P - <$(top_srcdir)/build/win32/vs10/gtk3-install.propsin >$@
|
$(CPP) -P - <$(top_srcdir)/build/win32/vs10/gtk4-install.propsin >$@
|
||||||
rm $(MSVC10_HEADERS_LISTS)
|
rm $(MSVC10_HEADERS_LISTS)
|
||||||
|
|
||||||
-include $(top_srcdir)/git.mk
|
-include $(top_srcdir)/git.mk
|
||||||
|
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -166,7 +166,7 @@
|
|||||||
#include "broadwayd.vs10.sourcefiles"
|
#include "broadwayd.vs10.sourcefiles"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gtk3-prebuild.vcxproj">
|
<ProjectReference Include="gtk4-prebuild.vcxproj">
|
||||||
<Project>{b98fbe68-b03c-48e3-8f32-c3c010720d30}</Project>
|
<Project>{b98fbe68-b03c-48e3-8f32-c3c010720d30}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
|
@ -1,188 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|x64">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{A1FCED61-4E51-4015-A70C-5373404D1BA0}</ProjectGuid>
|
|
||||||
<RootNamespace>gailutil</RootNamespace>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v100</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v100</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<PlatformToolset>v100</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v100</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="gtk3-build-defines.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="gtk3-build-defines.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="gtk3-build-defines.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="gtk3-build-defines.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;GTK_DISABLE_DEPRECATED;GDK_DISABLE_DEPRECATED;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>atk-1.0.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
|
|
||||||
<ModuleDefinitionFile>..\..\..\libgail-util\gailutil.def</ModuleDefinitionFile>
|
|
||||||
<ImportLibrary>$(TargetDir)$(ProjectName).0.lib</ImportLibrary>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<ProgramDatabaseFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).pdb</ProgramDatabaseFile>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>GTK_DISABLE_DEPRECATED;GDK_DISABLE_DEPRECATED;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>atk-1.0.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
|
|
||||||
<ModuleDefinitionFile>..\..\..\libgail-util\gailutil.def</ModuleDefinitionFile>
|
|
||||||
<ImportLibrary>$(TargetDir)$(ProjectName).0.lib</ImportLibrary>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<ProgramDatabaseFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).pdb</ProgramDatabaseFile>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;GTK_DISABLE_DEPRECATED;GDK_DISABLE_DEPRECATED;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>atk-1.0.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
|
|
||||||
<ModuleDefinitionFile>..\..\..\libgail-util\gailutil.def</ModuleDefinitionFile>
|
|
||||||
<ImportLibrary>$(TargetDir)$(ProjectName).0.lib</ImportLibrary>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<ProgramDatabaseFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).pdb</ProgramDatabaseFile>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<TargetMachine>MachineX64</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>GTK_DISABLE_DEPRECATED;GDK_DISABLE_DEPRECATED;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>atk-1.0.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
|
|
||||||
<ModuleDefinitionFile>..\..\..\libgail-util\gailutil.def</ModuleDefinitionFile>
|
|
||||||
<ImportLibrary>$(TargetDir)$(ProjectName).0.lib</ImportLibrary>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<ProgramDatabaseFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).pdb</ProgramDatabaseFile>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<TargetMachine>MachineX64</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
#include "gailutil-3.vs10.sourcefiles"
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="gdk-3.vcxproj">
|
|
||||||
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="gtk-3.vcxproj">
|
|
||||||
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
@ -18,7 +18,7 @@
|
|||||||
<ResourceCompile Include="..\..\..\gdk\win32\rc\gdk.rc"><Filter>Resource Files</Filter></ResourceCompile>
|
<ResourceCompile Include="..\..\..\gdk\win32\rc\gdk.rc"><Filter>Resource Files</Filter></ResourceCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gdk-3.vs10.sourcefiles.filters"
|
#include "gdk-4.vs10.sourcefiles.filters"
|
||||||
<ClCompile Include="..\..\..\gdk\gdkkeynames.c"><Filter>Source Files</Filter></ClCompile>
|
<ClCompile Include="..\..\..\gdk\gdkkeynames.c"><Filter>Source Files</Filter></ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -36,7 +36,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}</ProjectGuid>
|
<ProjectGuid>{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}</ProjectGuid>
|
||||||
<RootNamespace>gdk3</RootNamespace>
|
<RootNamespace>gdk4</RootNamespace>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
@ -89,35 +89,35 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-ignore-broadway.props" />
|
<Import Project="gtk4-ignore-broadway.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-ignore-broadway.props" />
|
<Import Project="gtk4-ignore-broadway.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-ignore-broadway.props" />
|
<Import Project="gtk4-ignore-broadway.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-ignore-broadway.props" />
|
<Import Project="gtk4-ignore-broadway.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-copy-gdk-broadway.props" />
|
<Import Project="gtk4-copy-gdk-broadway.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-copy-gdk-broadway.props" />
|
<Import Project="gtk4-copy-gdk-broadway.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-copy-gdk-broadway.props" />
|
<Import Project="gtk4-copy-gdk-broadway.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-copy-gdk-broadway.props" />
|
<Import Project="gtk4-copy-gdk-broadway.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -314,15 +314,15 @@
|
|||||||
<ResourceCompile Include="..\..\..\gdk\win32\rc\gdk.rc" />
|
<ResourceCompile Include="..\..\..\gdk\win32\rc\gdk.rc" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gdk-3.vs10.sourcefiles"
|
#include "gdk-4.vs10.sourcefiles"
|
||||||
<ClCompile Include="..\..\..\gdk\gdkkeynames.c" />
|
<ClCompile Include="..\..\..\gdk\gdkkeynames.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gdk3-broadway.vcxproj">
|
<ProjectReference Include="gdk4-broadway.vcxproj">
|
||||||
<Project>{1df4c475-4472-4ee4-ac2b-3ab5a4c1a453}</Project>
|
<Project>{1df4c475-4472-4ee4-ac2b-3ab5a4c1a453}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gdk3-win32.vcxproj">
|
<ProjectReference Include="gdk4-win32.vcxproj">
|
||||||
<Project>{aba7685a-7cbb-4626-b5e5-6eeea5b489ef}</Project>
|
<Project>{aba7685a-7cbb-4626-b5e5-6eeea5b489ef}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
@ -15,6 +15,6 @@
|
|||||||
</Filter>
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gdk3-broadway.vs10.sourcefiles.filters"
|
#include "gdk4-broadway.vs10.sourcefiles.filters"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -20,7 +20,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453}</ProjectGuid>
|
<ProjectGuid>{1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453}</ProjectGuid>
|
||||||
<RootNamespace>gdkbroadway</RootNamespace>
|
<RootNamespace>gdk4broadway</RootNamespace>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'">
|
||||||
@ -117,10 +117,10 @@
|
|||||||
</ClCompile>
|
</ClCompile>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gdk3-broadway.vs10.sourcefiles"
|
#include "gdk4-broadway.vs10.sourcefiles"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gtk3-prebuild.vcxproj">
|
<ProjectReference Include="gtk4-prebuild.vcxproj">
|
||||||
<Project>{b98fbe68-b03c-48e3-8f32-c3c010720d30}</Project>
|
<Project>{b98fbe68-b03c-48e3-8f32-c3c010720d30}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
@ -15,6 +15,6 @@
|
|||||||
</Filter>
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gdk3-win32.vs10.sourcefiles.filters"
|
#include "gdk4-win32.vs10.sourcefiles.filters"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -20,7 +20,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF}</ProjectGuid>
|
<ProjectGuid>{ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF}</ProjectGuid>
|
||||||
<RootNamespace>gdkwin32</RootNamespace>
|
<RootNamespace>gdk4win32</RootNamespace>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
@ -117,10 +117,10 @@
|
|||||||
</ClCompile>
|
</ClCompile>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gdk3-win32.vs10.sourcefiles"
|
#include "gdk4-win32.vs10.sourcefiles"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gtk3-prebuild.vcxproj">
|
<ProjectReference Include="gtk4-prebuild.vcxproj">
|
||||||
<Project>{b98fbe68-b03c-48e3-8f32-c3c010720d30}</Project>
|
<Project>{b98fbe68-b03c-48e3-8f32-c3c010720d30}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
@ -1,22 +1,22 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||||
# Visual Studio 2010
|
# Visual Studio 2010
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk3-prebuild", "gtk3-prebuild.vcxproj", "{B98FBE68-B03C-48E3-8F32-C3C010720D30}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk4-prebuild", "gtk4-prebuild.vcxproj", "{B98FBE68-B03C-48E3-8F32-C3C010720D30}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk3-win32", "gdk3-win32.vcxproj", "{ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk4-win32", "gdk4-win32.vcxproj", "{ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk3-broadway", "gdk3-broadway.vcxproj", "{1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk4-broadway", "gdk4-broadway.vcxproj", "{1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "broadwayd", "broadwayd.vcxproj", "{E9687D21-E214-4A0C-9EB4-8B38EBB783E5}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "broadwayd", "broadwayd.vcxproj", "{E9687D21-E214-4A0C-9EB4-8B38EBB783E5}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk-3", "gdk-3.vcxproj", "{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk-4", "gdk-4.vcxproj", "{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-3", "gtk-3.vcxproj", "{95A4B53D-2773-4406-A2C1-8FD2840BBAD8}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-4", "gtk-4.vcxproj", "{95A4B53D-2773-4406-A2C1-8FD2840BBAD8}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk3-demo", "gtk3-demo.vcxproj", "{BDAE6DE2-6BCC-4107-94F0-DA12214A02DE}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk4-demo", "gtk4-demo.vcxproj", "{BDAE6DE2-6BCC-4107-94F0-DA12214A02DE}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk3-demo-application", "gtk3-demo-application.vcxproj", "{BE6B4973-C6FF-4C8F-8E97-A47793C50F44}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk4-demo-application", "gtk4-demo-application.vcxproj", "{BE6B4973-C6FF-4C8F-8E97-A47793C50F44}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk3-icon-browser", "gtk3-icon-browser.vcxproj", "{343333C4-D46C-4C97-A986-959CCA6F1DE0}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk4-icon-browser", "gtk4-icon-browser.vcxproj", "{343333C4-D46C-4C97-A986-959CCA6F1DE0}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-encode-symbolic-svg", "gtk-encode-symbolic-svg.vcxproj", "{F280BF1A-777A-4FB5-8005-DFBE04621EDB}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-encode-symbolic-svg", "gtk-encode-symbolic-svg.vcxproj", "{F280BF1A-777A-4FB5-8005-DFBE04621EDB}"
|
||||||
EndProject
|
EndProject
|
||||||
@ -26,7 +26,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-builder-tool", "gtk-bui
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-query-settings", "gtk-query-settings.vcxproj", "{9F22107A-3EF7-4B52-B269-747B65307F36}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-query-settings", "gtk-query-settings.vcxproj", "{9F22107A-3EF7-4B52-B269-747B65307F36}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk3-install", "gtk3-install.vcxproj", "{23BBF35F-78AF-4E8C-983F-7B90448CD7DF}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk4-install", "gtk4-install.vcxproj", "{23BBF35F-78AF-4E8C-983F-7B90448CD7DF}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
@ -20,10 +20,10 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<CustomBuild Include="..\..\..\gtk\gtkdbusinterfaces.xml"><Filter>Resource Files</Filter></CustomBuild>
|
<CustomBuild Include="..\..\..\gtk\gtkdbusinterfaces.xml"><Filter>Resource Files</Filter></CustomBuild>
|
||||||
<CustomBuild Include="..\..\..\gtk\gtk-win32.rc.body"><Filter>Resource Files</Filter></CustomBuild>
|
<CustomBuild Include="..\..\..\gtk\gtk-win32.rc.body"><Filter>Resource Files</Filter></CustomBuild>
|
||||||
<CustomBuild Include="..\..\..\gtk\libgtk3.manifest.in"><Filter>Resource Files</Filter></CustomBuild>
|
<CustomBuild Include="..\..\..\gtk\libgtk4.manifest.in"><Filter>Resource Files</Filter></CustomBuild>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gtk-3.vs10.sourcefiles.filters"
|
#include "gtk-4.vs10.sourcefiles.filters"
|
||||||
<ClCompile Include="..\..\..\modules\input\gtkimcontextime.c"><Filter>Source Files</Filter></ClCompile>
|
<ClCompile Include="..\..\..\modules\input\gtkimcontextime.c"><Filter>Source Files</Filter></ClCompile>
|
||||||
<ClCompile Include="..\..\..\modules\input\gtkimcontextmultipress.c"><Filter>Source Files</Filter></ClCompile>
|
<ClCompile Include="..\..\..\modules\input\gtkimcontextmultipress.c"><Filter>Source Files</Filter></ClCompile>
|
||||||
<ClCompile Include="..\..\..\modules\input\gtkimcontextthai.c"><Filter>Source Files</Filter></ClCompile>
|
<ClCompile Include="..\..\..\modules\input\gtkimcontextthai.c"><Filter>Source Files</Filter></ClCompile>
|
||||||
@ -41,6 +41,6 @@
|
|||||||
<ClCompile Include="..\..\..\modules\input\thai-charprop.c"><Filter>Source Files</Filter></ClCompile>
|
<ClCompile Include="..\..\..\modules\input\thai-charprop.c"><Filter>Source Files</Filter></ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Manifest Include="..\..\..\gtk\libgtk3.manifest"><Filter>Resource Files</Filter></Manifest>
|
<Manifest Include="..\..\..\gtk\libgtk4.manifest"><Filter>Resource Files</Filter></Manifest>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -22,7 +22,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{95A4B53D-2773-4406-A2C1-8FD2840BBAD8}</ProjectGuid>
|
<ProjectGuid>{95A4B53D-2773-4406-A2C1-8FD2840BBAD8}</ProjectGuid>
|
||||||
<RootNamespace>gtk3</RootNamespace>
|
<RootNamespace>gtk4</RootNamespace>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -191,26 +191,26 @@
|
|||||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(CopyGtkWin32RC)</Command>
|
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(CopyGtkWin32RC)</Command>
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\..\..\gtk\gtk-win32.rc;%(Outputs)</Outputs>
|
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\..\..\gtk\gtk-win32.rc;%(Outputs)</Outputs>
|
||||||
</CustomBuild>
|
</CustomBuild>
|
||||||
<CustomBuild Include="..\..\..\gtk\libgtk3.manifest.in">
|
<CustomBuild Include="..\..\..\gtk\libgtk4.manifest.in">
|
||||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Generating GTK+ Win32 Manifest...</Message>
|
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Generating GTK+ Win32 Manifest...</Message>
|
||||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(GenerateGtkWin32Manifest)</Command>
|
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(GenerateGtkWin32Manifest)</Command>
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\..\gtk\libgtk3.manifest;%(Outputs)</Outputs>
|
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\..\gtk\libgtk4.manifest;%(Outputs)</Outputs>
|
||||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Generating GTK+ Win32 Manifest...</Message>
|
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Generating GTK+ Win32 Manifest...</Message>
|
||||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(GenerateGtkWin32Manifest)</Command>
|
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(GenerateGtkWin32Manifest)</Command>
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..\..\..\gtk\libgtk3.manifest;%(Outputs)</Outputs>
|
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..\..\..\gtk\libgtk4.manifest;%(Outputs)</Outputs>
|
||||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Generating GTK+ Win32 Manifest...</Message>
|
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Generating GTK+ Win32 Manifest...</Message>
|
||||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(GenerateGtkWin32Manifest)</Command>
|
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(GenerateGtkWin32Manifest)</Command>
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\..\gtk\libgtk3.manifest;%(Outputs)</Outputs>
|
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\..\gtk\libgtk4.manifest;%(Outputs)</Outputs>
|
||||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Generating GTK+ Win32 Manifest...</Message>
|
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Generating GTK+ Win32 Manifest...</Message>
|
||||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(GenerateGtkWin32Manifest)</Command>
|
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(GenerateGtkWin32Manifest)</Command>
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\..\..\gtk\libgtk3.manifest;%(Outputs)</Outputs>
|
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\..\..\gtk\libgtk4.manifest;%(Outputs)</Outputs>
|
||||||
</CustomBuild>
|
</CustomBuild>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include="..\..\..\gtk\gtk-win32.rc" />
|
<ResourceCompile Include="..\..\..\gtk\gtk-win32.rc" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gtk-3.vs10.sourcefiles"
|
#include "gtk-4.vs10.sourcefiles"
|
||||||
<ClCompile Include="..\..\..\modules\input\gtkimcontextime.c" />
|
<ClCompile Include="..\..\..\modules\input\gtkimcontextime.c" />
|
||||||
<ClCompile Include="..\..\..\modules\input\gtkimcontextmultipress.c" />
|
<ClCompile Include="..\..\..\modules\input\gtkimcontextmultipress.c" />
|
||||||
<ClCompile Include="..\..\..\modules\input\gtkimcontextthai.c" />
|
<ClCompile Include="..\..\..\modules\input\gtkimcontextthai.c" />
|
||||||
@ -228,10 +228,10 @@
|
|||||||
<ClCompile Include="..\..\..\modules\input\thai-charprop.c" />
|
<ClCompile Include="..\..\..\modules\input\thai-charprop.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Manifest Include="..\..\..\gtk\libgtk3.manifest" />
|
<Manifest Include="..\..\..\gtk\libgtk4.manifest" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gdk-3.vcxproj">
|
<ProjectReference Include="gdk-4.vcxproj">
|
||||||
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -166,11 +166,11 @@
|
|||||||
<ClCompile Include="..\..\..\gtk\gtk-builder-tool.c" />
|
<ClCompile Include="..\..\..\gtk\gtk-builder-tool.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gdk-3.vcxproj">
|
<ProjectReference Include="gdk-4.vcxproj">
|
||||||
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gtk-3.vcxproj">
|
<ProjectReference Include="gtk-4.vcxproj">
|
||||||
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
|
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -166,7 +166,7 @@
|
|||||||
<ClCompile Include="..\..\..\gtk\encodesymbolic.c" />
|
<ClCompile Include="..\..\..\gtk\encodesymbolic.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gdk-3.vcxproj">
|
<ProjectReference Include="gdk-4.vcxproj">
|
||||||
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
|
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -166,11 +166,11 @@
|
|||||||
<ClCompile Include="..\..\..\gtk\gtk-query-settings.c" />
|
<ClCompile Include="..\..\..\gtk\gtk-query-settings.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gdk-3.vcxproj">
|
<ProjectReference Include="gdk-4.vcxproj">
|
||||||
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gtk-3.vcxproj">
|
<ProjectReference Include="gtk-4.vcxproj">
|
||||||
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
|
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -166,7 +166,7 @@
|
|||||||
<ClCompile Include="..\..\..\gtk\updateiconcache.c" />
|
<ClCompile Include="..\..\..\gtk\updateiconcache.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gtk3-prebuild.vcxproj">
|
<ProjectReference Include="gtk4-prebuild.vcxproj">
|
||||||
<Project>{b98fbe68-b03c-48e3-8f32-c3c010720d30}</Project>
|
<Project>{b98fbe68-b03c-48e3-8f32-c3c010720d30}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Sources">
|
|
||||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
|
||||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Headers">
|
|
||||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
|
||||||
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Resource Files">
|
|
||||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
|
||||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
#include "gtk3-demo-application.vs10.sourcefiles.filters"
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
@ -1,10 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ImportGroup Label="PropertySheets">
|
<ImportGroup Label="PropertySheets">
|
||||||
<Import Project="gtk3-version-paths.props" />
|
<Import Project="gtk4-version-paths.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros">
|
<PropertyGroup Label="UserMacros">
|
||||||
<GtkBinaryVersion>3.0.0</GtkBinaryVersion>
|
<GtkBinaryVersion>4.0.0</GtkBinaryVersion>
|
||||||
<GtkDummyPrefix>/dummy</GtkDummyPrefix>
|
<GtkDummyPrefix>/dummy</GtkDummyPrefix>
|
||||||
<GtkPrefixDefine>GTK_PREFIX=\"$(GtkDummyPrefix)\"</GtkPrefixDefine>
|
<GtkPrefixDefine>GTK_PREFIX=\"$(GtkDummyPrefix)\"</GtkPrefixDefine>
|
||||||
<GdkDefines>GDK_COMPILATION;G_LOG_DOMAIN="Gdk"</GdkDefines>
|
<GdkDefines>GDK_COMPILATION;G_LOG_DOMAIN="Gdk"</GdkDefines>
|
||||||
@ -16,7 +16,7 @@
|
|||||||
<GtkAdditionalLibs>atk-1.0.lib;pangowin32-1.0.lib;winspool.lib;comctl32.lib;$(GtkGdkCommonLibs)</GtkAdditionalLibs>
|
<GtkAdditionalLibs>atk-1.0.lib;pangowin32-1.0.lib;winspool.lib;comctl32.lib;$(GtkGdkCommonLibs)</GtkAdditionalLibs>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_PropertySheetDisplayName>gtk3builddefinesprops</_PropertySheetDisplayName>
|
<_PropertySheetDisplayName>gtk4builddefinesprops</_PropertySheetDisplayName>
|
||||||
<OutDir>$(SolutionDir)$(Configuration)\$(PlatformName)\bin\</OutDir>
|
<OutDir>$(SolutionDir)$(Configuration)\$(PlatformName)\bin\</OutDir>
|
||||||
<IntDir>$(SolutionDir)$(Configuration)\$(PlatformName)\obj\$(ProjectName)\</IntDir>
|
<IntDir>$(SolutionDir)$(Configuration)\$(PlatformName)\obj\$(ProjectName)\</IntDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
@ -1,10 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ImportGroup Label="PropertySheets">
|
<ImportGroup Label="PropertySheets">
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_PropertySheetDisplayName>gtk3copygdkbroadwayprops</_PropertySheetDisplayName>
|
<_PropertySheetDisplayName>gtk4copygdkbroadwayprops</_PropertySheetDisplayName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup>
|
<ItemDefinitionGroup>
|
||||||
<Link>
|
<Link>
|
@ -15,6 +15,6 @@
|
|||||||
</Filter>
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gtk3-icon-browser.vs10.sourcefiles.filters"
|
#include "gtk4-demo-application.vs10.sourcefiles.filters"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -20,7 +20,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{BE6B4973-C6FF-4C8F-8E97-A47793C50F44}</ProjectGuid>
|
<ProjectGuid>{BE6B4973-C6FF-4C8F-8E97-A47793C50F44}</ProjectGuid>
|
||||||
<RootNamespace>gtk3demoapplication</RootNamespace>
|
<RootNamespace>gtk4demoapplication</RootNamespace>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -155,14 +155,14 @@
|
|||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gtk3-demo-application.vs10.sourcefiles"
|
#include "gtk4-demo-application.vs10.sourcefiles"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gdk-3.vcxproj">
|
<ProjectReference Include="gdk-4.vcxproj">
|
||||||
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gtk-3.vcxproj">
|
<ProjectReference Include="gtk-4.vcxproj">
|
||||||
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
@ -11,6 +11,6 @@
|
|||||||
</Filter>
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gtk3-demo.vs10.sourcefiles.filters"
|
#include "gtk4-demo.vs10.sourcefiles.filters"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -20,7 +20,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{BDAE6DE2-6BCC-4107-94F0-DA12214A02DE}</ProjectGuid>
|
<ProjectGuid>{BDAE6DE2-6BCC-4107-94F0-DA12214A02DE}</ProjectGuid>
|
||||||
<RootNamespace>gtk3demo</RootNamespace>
|
<RootNamespace>gtk4demo</RootNamespace>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -169,14 +169,14 @@
|
|||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gtk3-demo.vs10.sourcefiles"
|
#include "gtk4-demo.vs10.sourcefiles"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gdk-3.vcxproj">
|
<ProjectReference Include="gdk-4.vcxproj">
|
||||||
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gtk-3.vcxproj">
|
<ProjectReference Include="gtk-4.vcxproj">
|
||||||
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2004">
|
||||||
<ImportGroup Label="PropertySheets">
|
<ImportGroup Label="PropertySheets">
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros">
|
<PropertyGroup Label="UserMacros">
|
||||||
<GenConfigH>copy ..\..\..\config.h.win32 ..\..\..\config.h</GenConfigH>
|
<GenConfigH>copy ..\..\..\config.h.win32 ..\..\..\config.h</GenConfigH>
|
||||||
@ -42,11 +42,11 @@ echo $(Configuration) > ..\..\..\MSVC_$(Configuration)_Broadway
|
|||||||
<GenerateGtkDbusBuiltSources>cd ..\..\..\gtk & $(PythonPath)\python $(GDbusCodeGenCmd) & cd $(SolutionDir)</GenerateGtkDbusBuiltSources>
|
<GenerateGtkDbusBuiltSources>cd ..\..\..\gtk & $(PythonPath)\python $(GDbusCodeGenCmd) & cd $(SolutionDir)</GenerateGtkDbusBuiltSources>
|
||||||
<GenerateGtkDbusBuiltSourcesX64>cd ..\..\..\gtk & $(PythonPathX64)\python $(GDbusCodeGenCmd) & cd $(SolutionDir)</GenerateGtkDbusBuiltSourcesX64>
|
<GenerateGtkDbusBuiltSourcesX64>cd ..\..\..\gtk & $(PythonPathX64)\python $(GDbusCodeGenCmd) & cd $(SolutionDir)</GenerateGtkDbusBuiltSourcesX64>
|
||||||
<CopyGtkWin32RC>copy ..\..\..\gtk\gtk-win32.rc.body ..\..\..\gtk\gtk-win32.rc</CopyGtkWin32RC>
|
<CopyGtkWin32RC>copy ..\..\..\gtk\gtk-win32.rc.body ..\..\..\gtk\gtk-win32.rc</CopyGtkWin32RC>
|
||||||
<GenerateGtkWin32Manifest>$(PythonPath)\python ..\replace.py --action=replace-var --input=..\..\..\gtk\libgtk3.manifest.in --output=..\..\..\gtk\libgtk3.manifest --var=EXE_MANIFEST_ARCHITECTURE --outstring=*</GenerateGtkWin32Manifest>
|
<GenerateGtkWin32Manifest>$(PythonPath)\python ..\replace.py --action=replace-var --input=..\..\..\gtk\libgtk4.manifest.in --output=..\..\..\gtk\libgtk4.manifest --var=EXE_MANIFEST_ARCHITECTURE --outstring=*</GenerateGtkWin32Manifest>
|
||||||
<CopyDemosH>copy ..\..\..\demos\gtk-demo\demos.h.win32 ..\..\..\demos\gtk-demo\demos.h</CopyDemosH>
|
<CopyDemosH>copy ..\..\..\demos\gtk-demo\demos.h.win32 ..\..\..\demos\gtk-demo\demos.h</CopyDemosH>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_PropertySheetDisplayName>gtk3gensrcsprops</_PropertySheetDisplayName>
|
<_PropertySheetDisplayName>gtk4gensrcsprops</_PropertySheetDisplayName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<BuildMacro Include="GenConfigH">
|
<BuildMacro Include="GenConfigH">
|
@ -15,6 +15,6 @@
|
|||||||
</Filter>
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gailutil-3.vs10.sourcefiles.filters"
|
#include "gtk4-icon-browser.vs10.sourcefiles.filters"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -20,7 +20,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{343333C4-D46C-4C97-A986-959CCA6F1DE0}</ProjectGuid>
|
<ProjectGuid>{343333C4-D46C-4C97-A986-959CCA6F1DE0}</ProjectGuid>
|
||||||
<RootNamespace>gtk3iconbrowser</RootNamespace>
|
<RootNamespace>gtk4iconbrowser</RootNamespace>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
@ -51,19 +51,19 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -159,14 +159,14 @@
|
|||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
#include "gtk3-icon-browser.vs10.sourcefiles"
|
#include "gtk4-icon-browser.vs10.sourcefiles"
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gdk-3.vcxproj">
|
<ProjectReference Include="gdk-4.vcxproj">
|
||||||
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gtk-3.vcxproj">
|
<ProjectReference Include="gtk-4.vcxproj">
|
||||||
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
@ -1,17 +1,17 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ImportGroup Label="PropertySheets">
|
<ImportGroup Label="PropertySheets">
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_PropertySheetDisplayName>gtk3ignorebroadwayprops</_PropertySheetDisplayName>
|
<_PropertySheetDisplayName>gtk4ignorebroadwayprops</_PropertySheetDisplayName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup>
|
<ItemDefinitionGroup>
|
||||||
<ProjectReference>
|
<ProjectReference>
|
||||||
<LinkLibraryDependencies>false</LinkLibraryDependencies>
|
<LinkLibraryDependencies>false</LinkLibraryDependencies>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<Link>
|
<Link>
|
||||||
<AdditionalDependencies>$(OutDir)\gdk3-win32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
<AdditionalDependencies>$(OutDir)\gdk4-win32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
<AdditionalOptions>/EXPORT:gdk_win32_display_manager_get_type</AdditionalOptions>
|
<AdditionalOptions>/EXPORT:gdk_win32_display_manager_get_type</AdditionalOptions>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ImportGroup Label="PropertySheets">
|
<ImportGroup Label="PropertySheets">
|
||||||
<Import Project="gtk3-build-defines.props" />
|
<Import Project="gtk4-build-defines.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros">
|
<PropertyGroup Label="UserMacros">
|
||||||
<BinDir>$(SolutionDir)$(Configuration)\$(Platform)\bin</BinDir>
|
<BinDir>$(SolutionDir)$(Configuration)\$(Platform)\bin</BinDir>
|
||||||
@ -9,24 +9,22 @@
|
|||||||
mkdir $(CopyDir)\bin
|
mkdir $(CopyDir)\bin
|
||||||
mkdir $(CopyDir)\lib\pkgconfig
|
mkdir $(CopyDir)\lib\pkgconfig
|
||||||
|
|
||||||
copy "$(BinDir)\$(GtkDllPrefix)gdk-3$(GtkDllSuffix).dll" $(CopyDir)\bin
|
copy "$(BinDir)\$(GtkDllPrefix)gdk-4$(GtkDllSuffix).dll" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\$(GtkDllPrefix)gdk-3$(GtkDllSuffix).pdb" $(CopyDir)\bin
|
copy "$(BinDir)\$(GtkDllPrefix)gdk-4$(GtkDllSuffix).pdb" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\gdk-$(ApiVersion).lib" $(CopyDir)\lib
|
copy "$(BinDir)\gdk-$(ApiVersion).lib" $(CopyDir)\lib
|
||||||
|
|
||||||
if "$(Configuration)" == "Release_Broadway" goto DO_BROADWAY_BIN
|
if "$(Configuration)" == "Release_Broadway" goto DO_BROADWAY_BIN
|
||||||
if "$(Configuration)" == "Debug_Broadway" goto DO_BROADWAY_BIN
|
if "$(Configuration)" == "Debug_Broadway" goto DO_BROADWAY_BIN
|
||||||
copy "$(BinDir)\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).dll" $(CopyDir)\bin
|
copy "$(BinDir)\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).dll" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).pdb" $(CopyDir)\bin
|
copy "$(BinDir)\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).pdb" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).dll" $(CopyDir)\bin
|
|
||||||
copy "$(BinDir)\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).pdb" $(CopyDir)\bin
|
|
||||||
copy "$(BinDir)\gtk-$(ApiVersion).lib" $(CopyDir)\lib
|
copy "$(BinDir)\gtk-$(ApiVersion).lib" $(CopyDir)\lib
|
||||||
copy "$(BinDir)\gailutil-$(ApiVersion).lib" $(CopyDir)\lib
|
copy "$(BinDir)\gailutil-$(ApiVersion).lib" $(CopyDir)\lib
|
||||||
copy "$(BinDir)\gtk3-demo.exe" $(CopyDir)\bin
|
copy "$(BinDir)\gtk4-demo.exe" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\gtk3-demo.pdb" $(CopyDir)\bin
|
copy "$(BinDir)\gtk4-demo.pdb" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\gtk3-demo-application.exe" $(CopyDir)\bin
|
copy "$(BinDir)\gtk4-demo-application.exe" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\gtk3-demo-application.pdb" $(CopyDir)\bin
|
copy "$(BinDir)\gtk4-demo-application.pdb" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\gtk3-icon-browser.exe" $(CopyDir)\bin
|
copy "$(BinDir)\gtk4-icon-browser.exe" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\gtk3-icon-browser.pdb" $(CopyDir)\bin
|
copy "$(BinDir)\gtk4-icon-browser.pdb" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\gtk-encode-symbolic-svg.exe" $(CopyDir)\bin
|
copy "$(BinDir)\gtk-encode-symbolic-svg.exe" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\gtk-encode-symbolic-svg.pdb" $(CopyDir)\bin
|
copy "$(BinDir)\gtk-encode-symbolic-svg.pdb" $(CopyDir)\bin
|
||||||
copy "$(BinDir)\gtk-update-icon-cache.exe" $(CopyDir)\bin
|
copy "$(BinDir)\gtk-update-icon-cache.exe" $(CopyDir)\bin
|
||||||
@ -44,18 +42,16 @@ copy "$(BinDir)\broadwayd.pdb" $(CopyDir)\bin
|
|||||||
if "$(Configuration)" == "Release_Broadway" goto DO_BROADWAY_RELEASE
|
if "$(Configuration)" == "Release_Broadway" goto DO_BROADWAY_RELEASE
|
||||||
if "$(Configuration)" == "Debug_Broadway" goto DO_BROADWAY_DEBUG
|
if "$(Configuration)" == "Debug_Broadway" goto DO_BROADWAY_DEBUG
|
||||||
:DO_BROADWAY_RELEASE
|
:DO_BROADWAY_RELEASE
|
||||||
copy .\Release\$(Platform)\bin\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).dll $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).dll $(CopyDir)\bin
|
||||||
copy .\Release\$(Platform)\bin\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).pdb $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).pdb $(CopyDir)\bin
|
||||||
copy .\Release\$(Platform)\bin\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).dll $(CopyDir)\bin
|
|
||||||
copy .\Release\$(Platform)\bin\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).pdb $(CopyDir)\bin
|
|
||||||
copy .\Release\$(Platform)\bin\gtk-$(ApiVersion).lib $(CopyDir)\lib
|
copy .\Release\$(Platform)\bin\gtk-$(ApiVersion).lib $(CopyDir)\lib
|
||||||
copy .\Release\$(Platform)\bin\gailutil-$(ApiVersion).lib $(CopyDir)\lib
|
copy .\Release\$(Platform)\bin\gailutil-$(ApiVersion).lib $(CopyDir)\lib
|
||||||
copy .\Release\$(Platform)\bin\gtk3-demo.exe $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\gtk4-demo.exe $(CopyDir)\bin
|
||||||
copy .\Release\$(Platform)\bin\gtk3-demo.pdb $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\gtk4-demo.pdb $(CopyDir)\bin
|
||||||
copy .\Release\$(Platform)\bin\gtk3-demo-application.exe $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\gtk4-demo-application.exe $(CopyDir)\bin
|
||||||
copy .\Release\$(Platform)\bin\gtk3-demo-application.pdb $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\gtk4-demo-application.pdb $(CopyDir)\bin
|
||||||
copy .\Release\$(Platform)\bin\gtk3-icon-browser.exe $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\gtk4-icon-browser.exe $(CopyDir)\bin
|
||||||
copy .\Release\$(Platform)\bin\gtk3-icon-browser.pdb $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\gtk4-icon-browser.pdb $(CopyDir)\bin
|
||||||
copy .\Release\$(Platform)\bin\gtk-encode-symbolic-svg.exe $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\gtk-encode-symbolic-svg.exe $(CopyDir)\bin
|
||||||
copy .\Release\$(Platform)\bin\gtk-encode-symbolic-svg.pdb $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\gtk-encode-symbolic-svg.pdb $(CopyDir)\bin
|
||||||
copy .\Release\$(Platform)\bin\gtk-update-icon-cache.exe $(CopyDir)\bin
|
copy .\Release\$(Platform)\bin\gtk-update-icon-cache.exe $(CopyDir)\bin
|
||||||
@ -68,18 +64,16 @@ copy .\Release\$(Platform)\bin\gtk-builder-tool.pdb $(CopyDir)\bin
|
|||||||
goto DONE_BIN
|
goto DONE_BIN
|
||||||
|
|
||||||
:DO_BROADWAY_DEBUG
|
:DO_BROADWAY_DEBUG
|
||||||
copy .\Debug\$(Platform)\bin\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).dll $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).dll $(CopyDir)\bin
|
||||||
copy .\Debug\$(Platform)\bin\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).pdb $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).pdb $(CopyDir)\bin
|
||||||
copy .\Debug\$(Platform)\bin\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).dll $(CopyDir)\bin
|
|
||||||
copy .\Debug\$(Platform)\bin\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).pdb $(CopyDir)\bin
|
|
||||||
copy .\Debug\$(Platform)\bin\gtk-$(ApiVersion).lib $(CopyDir)\lib
|
copy .\Debug\$(Platform)\bin\gtk-$(ApiVersion).lib $(CopyDir)\lib
|
||||||
copy .\Debug\$(Platform)\bin\gailutil-$(ApiVersion).lib $(CopyDir)\lib
|
copy .\Debug\$(Platform)\bin\gailutil-$(ApiVersion).lib $(CopyDir)\lib
|
||||||
copy .\Debug\$(Platform)\bin\gtk3-demo.exe $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\gtk4-demo.exe $(CopyDir)\bin
|
||||||
copy .\Debug\$(Platform)\bin\gtk3-demo.pdb $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\gtk4-demo.pdb $(CopyDir)\bin
|
||||||
copy .\Debug\$(Platform)\bin\gtk3-demo-application.exe $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\gtk4-demo-application.exe $(CopyDir)\bin
|
||||||
copy .\Debug\$(Platform)\bin\gtk3-demo-application.pdb $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\gtk4-demo-application.pdb $(CopyDir)\bin
|
||||||
copy .\Debug\$(Platform)\bin\gtk3-icon-browser.exe $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\gtk4-icon-browser.exe $(CopyDir)\bin
|
||||||
copy .\Debug\$(Platform)\bin\gtk3-icon-browser.pdb $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\gtk4-icon-browser.pdb $(CopyDir)\bin
|
||||||
copy .\Debug\$(Platform)\bin\gtk-encode-symbolic-svg.exe $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\gtk-encode-symbolic-svg.exe $(CopyDir)\bin
|
||||||
copy .\Debug\$(Platform)\bin\gtk-encode-symbolic-svg.pdb $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\gtk-encode-symbolic-svg.pdb $(CopyDir)\bin
|
||||||
copy .\Debug\$(Platform)\bin\gtk-update-icon-cache.exe $(CopyDir)\bin
|
copy .\Debug\$(Platform)\bin\gtk-update-icon-cache.exe $(CopyDir)\bin
|
||||||
@ -91,37 +85,34 @@ copy .\Debug\$(Platform)\bin\gtk-builder-tool.pdb $(CopyDir)\bin
|
|||||||
|
|
||||||
:DONE_BIN
|
:DONE_BIN
|
||||||
|
|
||||||
copy ..\gdk-3.0.pc $(CopyDir)\lib\pkgconfig
|
copy ..\gdk-4.0.pc $(CopyDir)\lib\pkgconfig
|
||||||
copy "..\gtk+-3.0.pc" $(CopyDir)\lib\pkgconfig
|
copy "..\gtk+-4.0.pc" $(CopyDir)\lib\pkgconfig
|
||||||
copy ..\gail-3.0.pc $(CopyDir)\lib\pkgconfig
|
copy ..\gail-4.0.pc $(CopyDir)\lib\pkgconfig
|
||||||
</GtkDoInstallBin>
|
</GtkDoInstallBin>
|
||||||
<GtkDoInstall>
|
<GtkDoInstall>
|
||||||
echo off
|
echo off
|
||||||
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\win32
|
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\win32
|
||||||
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\deprecated
|
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\deprecated
|
||||||
copy ..\..\..\gdk\win32\gdkwin32.h $(CopyDir)\include\gtk-$(ApiVersion)\gdk
|
copy ..\..\..\gdk\win32\gdkwin32.h $(CopyDir)\include\gtk-$(ApiVersion)\gdk
|
||||||
#include "gdk-3.vs10.headers"
|
#include "gdk-4.vs10.headers"
|
||||||
#include "gdk3-win32.vs10.headers"
|
#include "gdk4-win32.vs10.headers"
|
||||||
|
|
||||||
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gtk\a11y
|
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gtk\a11y
|
||||||
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gtk\deprecated
|
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gtk\deprecated
|
||||||
#include "gtk-3.vs10.headers"
|
#include "gtk-4.vs10.headers"
|
||||||
|
|
||||||
mkdir $(CopyDir)\include\gail-$(ApiVersion)\libgail-util
|
|
||||||
#include "gailutil-3.vs10.headers"
|
|
||||||
|
|
||||||
mkdir $(CopyDir)\share\icons\hicolor\16x16\apps
|
mkdir $(CopyDir)\share\icons\hicolor\16x16\apps
|
||||||
copy ..\..\..\demos\gtk-demo\data\16x16\gtk3-demo.png $(CopyDir)\share\icons\hicolor\16x16\apps
|
copy ..\..\..\demos\gtk-demo\data\16x16\gtk4-demo.png $(CopyDir)\share\icons\hicolor\16x16\apps
|
||||||
mkdir $(CopyDir)\share\icons\hicolor\22x22\apps
|
mkdir $(CopyDir)\share\icons\hicolor\22x22\apps
|
||||||
copy ..\..\..\demos\gtk-demo\data\22x22\gtk3-demo.png $(CopyDir)\share\icons\hicolor\22x22\apps
|
copy ..\..\..\demos\gtk-demo\data\22x22\gtk4-demo.png $(CopyDir)\share\icons\hicolor\22x22\apps
|
||||||
mkdir $(CopyDir)\share\icons\hicolor\24x24\apps
|
mkdir $(CopyDir)\share\icons\hicolor\24x24\apps
|
||||||
copy ..\..\..\demos\gtk-demo\data\24x24\gtk3-demo.png $(CopyDir)\share\icons\hicolor\24x24\apps
|
copy ..\..\..\demos\gtk-demo\data\24x24\gtk4-demo.png $(CopyDir)\share\icons\hicolor\24x24\apps
|
||||||
mkdir $(CopyDir)\share\icons\hicolor\32x32\apps
|
mkdir $(CopyDir)\share\icons\hicolor\32x32\apps
|
||||||
copy ..\..\..\demos\gtk-demo\data\32x32\gtk3-demo.png $(CopyDir)\share\icons\hicolor\32x32\apps
|
copy ..\..\..\demos\gtk-demo\data\32x32\gtk4-demo.png $(CopyDir)\share\icons\hicolor\32x32\apps
|
||||||
mkdir $(CopyDir)\share\icons\hicolor\48x48\apps
|
mkdir $(CopyDir)\share\icons\hicolor\48x48\apps
|
||||||
copy ..\..\..\demos\gtk-demo\data\48x48\gtk3-demo.png $(CopyDir)\share\icons\hicolor\48x48\apps
|
copy ..\..\..\demos\gtk-demo\data\48x48\gtk4-demo.png $(CopyDir)\share\icons\hicolor\48x48\apps
|
||||||
mkdir $(CopyDir)\share\icons\hicolor\256x256\apps
|
mkdir $(CopyDir)\share\icons\hicolor\256x256\apps
|
||||||
copy ..\..\..\demos\gtk-demo\data\256x256\gtk3-demo.png $(CopyDir)\share\icons\hicolor\256x256\apps
|
copy ..\..\..\demos\gtk-demo\data\256x256\gtk4-demo.png $(CopyDir)\share\icons\hicolor\256x256\apps
|
||||||
mkdir $(CopyDir)\share\glib-2.0\schemas
|
mkdir $(CopyDir)\share\glib-2.0\schemas
|
||||||
copy ..\..\..\gtk\org.gtk.Settings.FileChooser.gschema.xml $(CopyDir)\share\glib-2.0\schemas
|
copy ..\..\..\gtk\org.gtk.Settings.FileChooser.gschema.xml $(CopyDir)\share\glib-2.0\schemas
|
||||||
copy ..\..\..\gtk\org.gtk.Settings.ColorChooser.gschema.xml $(CopyDir)\share\glib-2.0\schemas
|
copy ..\..\..\gtk\org.gtk.Settings.ColorChooser.gschema.xml $(CopyDir)\share\glib-2.0\schemas
|
||||||
@ -131,7 +122,7 @@ copy ..\..\..\demos\gtk-demo\org.gtk.Demo.gschema.xml $(CopyDir)\share\glib-2.0\
|
|||||||
<GtkDoInstallBroadwayHeaders>
|
<GtkDoInstallBroadwayHeaders>
|
||||||
copy ..\..\..\gdk\broadway\gdkbroadway.h $(CopyDir)\include\gtk-$(ApiVersion)\gdk
|
copy ..\..\..\gdk\broadway\gdkbroadway.h $(CopyDir)\include\gtk-$(ApiVersion)\gdk
|
||||||
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\broadway
|
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\broadway
|
||||||
#include "gdk3-broadway.vs10.headers"
|
#include "gdk4-broadway.vs10.headers"
|
||||||
</GtkDoInstallBroadwayHeaders>
|
</GtkDoInstallBroadwayHeaders>
|
||||||
<GtkPostInstall>
|
<GtkPostInstall>
|
||||||
echo "Compiling gsettings XML Files..."
|
echo "Compiling gsettings XML Files..."
|
||||||
@ -142,10 +133,10 @@ $(CopyDir)\bin\gtk-update-icon-cache.exe --ignore-theme-index --force "$(CopyDir
|
|||||||
</GtkPostInstall>
|
</GtkPostInstall>
|
||||||
<GenerateGtkPC>$(PythonPath)\python ..\gtkpc.py --prefix=$(CopyDir) --version=$(GtkVersion) --host=i686-pc-vs$(VSVer)</GenerateGtkPC>
|
<GenerateGtkPC>$(PythonPath)\python ..\gtkpc.py --prefix=$(CopyDir) --version=$(GtkVersion) --host=i686-pc-vs$(VSVer)</GenerateGtkPC>
|
||||||
<GenerateGtkPCX64>$(PythonPathX64)\python ..\gtkpc.py --prefix=$(CopyDir) --version=$(GtkVersion) --host=x86_64-pc-vs$(VSVer)</GenerateGtkPCX64>
|
<GenerateGtkPCX64>$(PythonPathX64)\python ..\gtkpc.py --prefix=$(CopyDir) --version=$(GtkVersion) --host=x86_64-pc-vs$(VSVer)</GenerateGtkPCX64>
|
||||||
<GtkPCFiles>..\gdk-3.0.pc;..\gtk+-3.0.pc;..\gail-3.0.pc</GtkPCFiles>
|
<GtkPCFiles>..\gdk-4.0.pc;..\gtk+-4.0.pc;..\gail-4.0.pc</GtkPCFiles>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_PropertySheetDisplayName>gtk3installsprops</_PropertySheetDisplayName>
|
<_PropertySheetDisplayName>gtk4installsprops</_PropertySheetDisplayName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<BuildMacro Include="BinDir">
|
<BuildMacro Include="BinDir">
|
@ -36,7 +36,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{23BBF35F-78AF-4E8C-983F-7B90448CD7DF}</ProjectGuid>
|
<ProjectGuid>{23BBF35F-78AF-4E8C-983F-7B90448CD7DF}</ProjectGuid>
|
||||||
<RootNamespace>gtkinstall</RootNamespace>
|
<RootNamespace>gtk4install</RootNamespace>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
@ -89,35 +89,35 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-install.props" />
|
<Import Project="gtk4-install.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-install.props" />
|
<Import Project="gtk4-install.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-install.props" />
|
<Import Project="gtk4-install.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-install.props" />
|
<Import Project="gtk4-install.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-install.props" />
|
<Import Project="gtk4-install.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-install.props" />
|
<Import Project="gtk4-install.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-install.props" />
|
<Import Project="gtk4-install.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-install.props" />
|
<Import Project="gtk4-install.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@ -217,27 +217,23 @@
|
|||||||
</CustomBuild>
|
</CustomBuild>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="gdk-3.vcxproj">
|
<ProjectReference Include="gdk-4.vcxproj">
|
||||||
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
<Project>{5ae8f5ce-9103-4951-aede-ea2f3b573be8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gtk3-demo.vcxproj">
|
<ProjectReference Include="gtk4-demo.vcxproj">
|
||||||
<Project>{bdae6de2-6bcc-4107-94f0-da12214a02de}</Project>
|
<Project>{bdae6de2-6bcc-4107-94f0-da12214a02de}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gtk-3.vcxproj">
|
<ProjectReference Include="gtk-4.vcxproj">
|
||||||
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
<Project>{95a4b53d-2773-4406-a2c1-8fd2840bbad8}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gailutil-3.vcxproj">
|
<ProjectReference Include="gtk4-demo-application.vcxproj">
|
||||||
<Project>{a1fced61-4e51-4015-a70c-5373404d1ba0}</Project>
|
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="gtk3-demo-application.vcxproj">
|
|
||||||
<Project>{be6b4973-c6ff-4c8f-8e97-a47793c50f44}</Project>
|
<Project>{be6b4973-c6ff-4c8f-8e97-a47793c50f44}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gtk3-icon-browser.vcxproj">
|
<ProjectReference Include="gtk4-icon-browser.vcxproj">
|
||||||
<Project>{343333c4-d46c-4c97-a986-959cca6f1de0}</Project>
|
<Project>{343333c4-d46c-4c97-a986-959cca6f1de0}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
@ -258,7 +254,7 @@
|
|||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="gtk-query-settings.vcxproj">
|
<ProjectReference Include="gtk-query-settings.vcxproj">
|
||||||
<Project>{9f22107a-3ef7-4b52-b269-747b65307f36}</Project>
|
<Project>{9f22107a-4ef7-4b52-b269-747b65307f36}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
@ -89,35 +89,35 @@
|
|||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
<Import Project="gtk3-gen-srcs.props" />
|
<Import Project="gtk4-gen-srcs.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
@ -4,7 +4,7 @@
|
|||||||
<VSVer>10</VSVer>
|
<VSVer>10</VSVer>
|
||||||
<GlibEtcInstallRoot>$(SolutionDir)\..\..\..\..\vs$(VSVer)\$(Platform)</GlibEtcInstallRoot>
|
<GlibEtcInstallRoot>$(SolutionDir)\..\..\..\..\vs$(VSVer)\$(Platform)</GlibEtcInstallRoot>
|
||||||
<CopyDir>..\..\..\..\vs$(VSVer)\$(Platform)</CopyDir>
|
<CopyDir>..\..\..\..\vs$(VSVer)\$(Platform)</CopyDir>
|
||||||
<ApiVersion>3.0</ApiVersion>
|
<ApiVersion>4.0</ApiVersion>
|
||||||
<GtkVersion>@GTK_VERSION@</GtkVersion>
|
<GtkVersion>@GTK_VERSION@</GtkVersion>
|
||||||
<GtkLibtoolCompatibleDllPrefix>lib</GtkLibtoolCompatibleDllPrefix>
|
<GtkLibtoolCompatibleDllPrefix>lib</GtkLibtoolCompatibleDllPrefix>
|
||||||
<GtkLibtoolCompatibleDllSuffix>.0-0</GtkLibtoolCompatibleDllSuffix>
|
<GtkLibtoolCompatibleDllSuffix>.0-0</GtkLibtoolCompatibleDllSuffix>
|
||||||
@ -16,7 +16,7 @@
|
|||||||
<PythonPathX64>$(PythonPath).x64</PythonPathX64>
|
<PythonPathX64>$(PythonPath).x64</PythonPathX64>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<_PropertySheetDisplayName>gtk3versionpathsprops</_PropertySheetDisplayName>
|
<_PropertySheetDisplayName>gtk4versionpathsprops</_PropertySheetDisplayName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<BuildMacro Include="VSVer">
|
<BuildMacro Include="VSVer">
|
@ -2,15 +2,15 @@ include $(top_srcdir)/Makefile.decl
|
|||||||
|
|
||||||
EXTRA_DIST += \
|
EXTRA_DIST += \
|
||||||
README.txt \
|
README.txt \
|
||||||
gtk+.sln \
|
gtk+-4.sln \
|
||||||
gtk3-prebuild.vcxproj \
|
gtk4-prebuild.vcxproj \
|
||||||
gtk3-prebuild.vcxproj.filters \
|
gtk4-prebuild.vcxproj.filters \
|
||||||
gdk3-win32.vcxproj \
|
gdk4-win32.vcxproj \
|
||||||
gdk3-win32.vcxproj.filters \
|
gdk4-win32.vcxproj.filters \
|
||||||
gdk-3.vcxproj \
|
gdk-4.vcxproj \
|
||||||
gdk-3.vcxproj.filters \
|
gdk-4.vcxproj.filters \
|
||||||
gtk-3.vcxproj \
|
gtk-4.vcxproj \
|
||||||
gtk-3.vcxproj.filters \
|
gtk-4.vcxproj.filters \
|
||||||
gtk-builder-tool.vcxproj \
|
gtk-builder-tool.vcxproj \
|
||||||
gtk-builder-tool.vcxproj.filters \
|
gtk-builder-tool.vcxproj.filters \
|
||||||
gtk-encode-symbolic-svg.vcxproj \
|
gtk-encode-symbolic-svg.vcxproj \
|
||||||
@ -19,26 +19,24 @@ EXTRA_DIST += \
|
|||||||
gtk-update-icon-cache.vcxproj.filters \
|
gtk-update-icon-cache.vcxproj.filters \
|
||||||
gtk-query-settings.vcxproj \
|
gtk-query-settings.vcxproj \
|
||||||
gtk-query-settings.vcxproj.filters \
|
gtk-query-settings.vcxproj.filters \
|
||||||
gtk3-demo.vcxproj \
|
gtk4-demo.vcxproj \
|
||||||
gtk3-demo.vcxproj.filters \
|
gtk4-demo.vcxproj.filters \
|
||||||
gtk3-demo-application.vcxproj \
|
gtk4-demo-application.vcxproj \
|
||||||
gtk3-demo-application.vcxproj.filters \
|
gtk4-demo-application.vcxproj.filters \
|
||||||
gtk3-icon-browser.vcxproj \
|
gtk4-icon-browser.vcxproj \
|
||||||
gtk3-icon-browser.vcxproj.filters \
|
gtk4-icon-browser.vcxproj.filters \
|
||||||
gailutil-3.vcxproj \
|
gtk4-install.vcxproj \
|
||||||
gailutil-3.vcxproj.filters \
|
gtk4-install.vcxproj.filters \
|
||||||
gtk3-install.vcxproj \
|
|
||||||
gtk3-install.vcxproj.filters \
|
|
||||||
broadwayd.vcxproj \
|
broadwayd.vcxproj \
|
||||||
broadwayd.vcxproj.filters \
|
broadwayd.vcxproj.filters \
|
||||||
gdk3-broadway.vcxproj \
|
gdk4-broadway.vcxproj \
|
||||||
gdk3-broadway.vcxproj.filters \
|
gdk4-broadway.vcxproj.filters \
|
||||||
gtk3-build-defines.props \
|
gtk4-build-defines.props \
|
||||||
gtk3-copy-gdk-broadway.props \
|
gtk4-copy-gdk-broadway.props \
|
||||||
gtk3-gen-srcs.props \
|
gtk4-gen-srcs.props \
|
||||||
gtk3-ignore-broadway.props \
|
gtk4-ignore-broadway.props \
|
||||||
gtk3-install.props \
|
gtk4-install.props \
|
||||||
gtk3-version-paths.props
|
gtk4-version-paths.props
|
||||||
|
|
||||||
DISTCLEANFILES = $(EXTRA_DIST)
|
DISTCLEANFILES = $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -2,15 +2,15 @@ include $(top_srcdir)/Makefile.decl
|
|||||||
|
|
||||||
EXTRA_DIST += \
|
EXTRA_DIST += \
|
||||||
README.txt \
|
README.txt \
|
||||||
gtk+.sln \
|
gtk+-4.sln \
|
||||||
gtk3-prebuild.vcxproj \
|
gtk4-prebuild.vcxproj \
|
||||||
gtk3-prebuild.vcxproj.filters \
|
gtk4-prebuild.vcxproj.filters \
|
||||||
gdk3-win32.vcxproj \
|
gdk4-win32.vcxproj \
|
||||||
gdk3-win32.vcxproj.filters \
|
gdk4-win32.vcxproj.filters \
|
||||||
gdk-3.vcxproj \
|
gdk-4.vcxproj \
|
||||||
gdk-3.vcxproj.filters \
|
gdk-4.vcxproj.filters \
|
||||||
gtk-3.vcxproj \
|
gtk-4.vcxproj \
|
||||||
gtk-3.vcxproj.filters \
|
gtk-4.vcxproj.filters \
|
||||||
gtk-builder-tool.vcxproj \
|
gtk-builder-tool.vcxproj \
|
||||||
gtk-builder-tool.vcxproj.filters \
|
gtk-builder-tool.vcxproj.filters \
|
||||||
gtk-encode-symbolic-svg.vcxproj \
|
gtk-encode-symbolic-svg.vcxproj \
|
||||||
@ -19,26 +19,24 @@ EXTRA_DIST += \
|
|||||||
gtk-query-settings.vcxproj.filters \
|
gtk-query-settings.vcxproj.filters \
|
||||||
gtk-update-icon-cache.vcxproj \
|
gtk-update-icon-cache.vcxproj \
|
||||||
gtk-update-icon-cache.vcxproj.filters \
|
gtk-update-icon-cache.vcxproj.filters \
|
||||||
gtk3-demo.vcxproj \
|
gtk4-demo.vcxproj \
|
||||||
gtk3-demo.vcxproj.filters \
|
gtk4-demo.vcxproj.filters \
|
||||||
gtk3-demo-application.vcxproj \
|
gtk4-demo-application.vcxproj \
|
||||||
gtk3-demo-application.vcxproj.filters \
|
gtk4-demo-application.vcxproj.filters \
|
||||||
gtk3-icon-browser.vcxproj \
|
gtk4-icon-browser.vcxproj \
|
||||||
gtk3-icon-browser.vcxproj.filters \
|
gtk4-icon-browser.vcxproj.filters \
|
||||||
gailutil-3.vcxproj \
|
gtk4-install.vcxproj \
|
||||||
gailutil-3.vcxproj.filters \
|
gtk4-install.vcxproj.filters \
|
||||||
gtk3-install.vcxproj \
|
|
||||||
gtk3-install.vcxproj.filters \
|
|
||||||
broadwayd.vcxproj \
|
broadwayd.vcxproj \
|
||||||
broadwayd.vcxproj.filters \
|
broadwayd.vcxproj.filters \
|
||||||
gdk3-broadway.vcxproj \
|
gdk4-broadway.vcxproj \
|
||||||
gdk3-broadway.vcxproj.filters \
|
gdk4-broadway.vcxproj.filters \
|
||||||
gtk3-build-defines.props \
|
gtk4-build-defines.props \
|
||||||
gtk3-copy-gdk-broadway.props \
|
gtk4-copy-gdk-broadway.props \
|
||||||
gtk3-gen-srcs.props \
|
gtk4-gen-srcs.props \
|
||||||
gtk3-ignore-broadway.props \
|
gtk4-ignore-broadway.props \
|
||||||
gtk3-install.props \
|
gtk4-install.props \
|
||||||
gtk3-version-paths.props
|
gtk4-version-paths.props
|
||||||
|
|
||||||
DISTCLEANFILES = $(EXTRA_DIST)
|
DISTCLEANFILES = $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -2,15 +2,15 @@ include $(top_srcdir)/Makefile.decl
|
|||||||
|
|
||||||
EXTRA_DIST += \
|
EXTRA_DIST += \
|
||||||
README.txt \
|
README.txt \
|
||||||
gtk+.sln \
|
gtk+-4.sln \
|
||||||
gtk3-prebuild.vcxproj \
|
gtk4-prebuild.vcxproj \
|
||||||
gtk3-prebuild.vcxproj.filters \
|
gtk4-prebuild.vcxproj.filters \
|
||||||
gdk3-win32.vcxproj \
|
gdk4-win32.vcxproj \
|
||||||
gdk3-win32.vcxproj.filters \
|
gdk4-win32.vcxproj.filters \
|
||||||
gdk-3.vcxproj \
|
gdk-4.vcxproj \
|
||||||
gdk-3.vcxproj.filters \
|
gdk-4.vcxproj.filters \
|
||||||
gtk-3.vcxproj \
|
gtk-4.vcxproj \
|
||||||
gtk-3.vcxproj.filters \
|
gtk-4.vcxproj.filters \
|
||||||
gtk-builder-tool.vcxproj \
|
gtk-builder-tool.vcxproj \
|
||||||
gtk-builder-tool.vcxproj.filters \
|
gtk-builder-tool.vcxproj.filters \
|
||||||
gtk-encode-symbolic-svg.vcxproj \
|
gtk-encode-symbolic-svg.vcxproj \
|
||||||
@ -19,26 +19,24 @@ EXTRA_DIST += \
|
|||||||
gtk-query-settings.vcxproj.filters \
|
gtk-query-settings.vcxproj.filters \
|
||||||
gtk-update-icon-cache.vcxproj \
|
gtk-update-icon-cache.vcxproj \
|
||||||
gtk-update-icon-cache.vcxproj.filters \
|
gtk-update-icon-cache.vcxproj.filters \
|
||||||
gtk3-demo.vcxproj \
|
gtk4-demo.vcxproj \
|
||||||
gtk3-demo.vcxproj.filters \
|
gtk4-demo.vcxproj.filters \
|
||||||
gtk3-demo-application.vcxproj \
|
gtk4-demo-application.vcxproj \
|
||||||
gtk3-demo-application.vcxproj.filters \
|
gtk4-demo-application.vcxproj.filters \
|
||||||
gtk3-icon-browser.vcxproj \
|
gtk4-icon-browser.vcxproj \
|
||||||
gtk3-icon-browser.vcxproj.filters \
|
gtk4-icon-browser.vcxproj.filters \
|
||||||
gailutil-3.vcxproj \
|
gtk4-install.vcxproj \
|
||||||
gailutil-3.vcxproj.filters \
|
gtk4-install.vcxproj.filters \
|
||||||
gtk3-install.vcxproj \
|
|
||||||
gtk3-install.vcxproj.filters \
|
|
||||||
broadwayd.vcxproj \
|
broadwayd.vcxproj \
|
||||||
broadwayd.vcxproj.filters \
|
broadwayd.vcxproj.filters \
|
||||||
gdk3-broadway.vcxproj \
|
gdk4-broadway.vcxproj \
|
||||||
gdk3-broadway.vcxproj.filters \
|
gdk4-broadway.vcxproj.filters \
|
||||||
gtk3-build-defines.props \
|
gtk4-build-defines.props \
|
||||||
gtk3-copy-gdk-broadway.props \
|
gtk4-copy-gdk-broadway.props \
|
||||||
gtk3-gen-srcs.props \
|
gtk4-gen-srcs.props \
|
||||||
gtk3-ignore-broadway.props \
|
gtk4-ignore-broadway.props \
|
||||||
gtk3-install.props \
|
gtk4-install.props \
|
||||||
gtk3-version-paths.props
|
gtk4-version-paths.props
|
||||||
|
|
||||||
DISTCLEANFILES = $(EXTRA_DIST)
|
DISTCLEANFILES = $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -1,53 +1,50 @@
|
|||||||
include $(top_srcdir)/Makefile.decl
|
include $(top_srcdir)/Makefile.decl
|
||||||
|
|
||||||
MSVC_HEADERS_LISTS = \
|
MSVC_HEADERS_LISTS = \
|
||||||
gdk3-win32.headers \
|
gdk4-win32.headers \
|
||||||
gdk3-broadway.headers \
|
gdk4-broadway.headers \
|
||||||
gdk-3.headers \
|
gdk-4.headers \
|
||||||
gtk-3.headers \
|
gtk-4.headers
|
||||||
gailutil-3.headers
|
|
||||||
|
|
||||||
GENERATED_ITEMS = \
|
GENERATED_ITEMS = \
|
||||||
gdk3-win32.vcproj \
|
gdk4-win32.vcproj \
|
||||||
gdk3-broadway.vcproj \
|
gdk4-broadway.vcproj \
|
||||||
broadwayd.vcproj \
|
broadwayd.vcproj \
|
||||||
gdk-3.vcproj \
|
gdk-4.vcproj \
|
||||||
gtk-3.vcproj \
|
gtk-4.vcproj \
|
||||||
gtk3-demo.vcproj \
|
gtk4-demo.vcproj \
|
||||||
gtk3-demo-application.vcproj \
|
gtk4-demo-application.vcproj \
|
||||||
gtk3-icon-browser.vcproj \
|
gtk4-icon-browser.vcproj \
|
||||||
gailutil-3.vcproj \
|
gtk4-install.vsprops \
|
||||||
gtk3-install.vsprops \
|
gtk4-version-paths.vsprops
|
||||||
gtk3-version-paths.vsprops
|
|
||||||
|
|
||||||
EXTRA_DIST += \
|
EXTRA_DIST += \
|
||||||
README.txt \
|
README.txt \
|
||||||
gtk+.sln \
|
gtk+-4.sln \
|
||||||
gtk3-prebuild.vcproj \
|
gtk4-prebuild.vcproj \
|
||||||
gdk3-win32.vcprojin \
|
gdk4-win32.vcprojin \
|
||||||
gdk-3.vcprojin \
|
gdk-4.vcprojin \
|
||||||
gtk-3.vcprojin \
|
gtk-4.vcprojin \
|
||||||
gtk-builder-tool.vcproj \
|
gtk-builder-tool.vcproj \
|
||||||
gtk-encode-symbolic-svg.vcproj \
|
gtk-encode-symbolic-svg.vcproj \
|
||||||
gtk-query-settings.vcproj \
|
gtk-query-settings.vcproj \
|
||||||
gtk-update-icon-cache.vcproj \
|
gtk-update-icon-cache.vcproj \
|
||||||
gtk3-demo.vcprojin \
|
gtk4-demo.vcprojin \
|
||||||
gtk3-demo-application.vcprojin \
|
gtk4-demo-application.vcprojin \
|
||||||
gtk3-icon-browser.vcprojin \
|
gtk4-icon-browser.vcprojin \
|
||||||
gailutil-3.vcprojin \
|
gtk4-install.vcproj \
|
||||||
gtk3-install.vcproj \
|
|
||||||
broadwayd.vcprojin \
|
broadwayd.vcprojin \
|
||||||
gdk3-broadway.vcprojin \
|
gdk4-broadway.vcprojin \
|
||||||
gtk3-build-defines.vsprops \
|
gtk4-build-defines.vsprops \
|
||||||
gtk3-copy-gdk-broadway.vsprops \
|
gtk4-copy-gdk-broadway.vsprops \
|
||||||
gtk3-gen-srcs.vsprops \
|
gtk4-gen-srcs.vsprops \
|
||||||
gtk3-ignore-broadway.vsprops \
|
gtk4-ignore-broadway.vsprops \
|
||||||
gtk3-install.vspropsin \
|
gtk4-install.vspropsin \
|
||||||
gtk3-version-paths.vsprops.in \
|
gtk4-version-paths.vsprops.in \
|
||||||
$(GENERATED_ITEMS)
|
$(GENERATED_ITEMS)
|
||||||
|
|
||||||
gtk3-install.vsprops: $(top_srcdir)/build/win32/vs9/gtk3-install.vspropsin $(MSVC_HEADERS_LISTS)
|
gtk4-install.vsprops: $(top_srcdir)/build/win32/vs9/gtk4-install.vspropsin $(MSVC_HEADERS_LISTS)
|
||||||
$(CPP) -P - <$(top_srcdir)/build/win32/vs9/gtk3-install.vspropsin >$@
|
$(CPP) -P - <$(top_srcdir)/build/win32/vs9/gtk4-install.vspropsin >$@
|
||||||
rm $(MSVC_HEADERS_LISTS)
|
rm $(MSVC_HEADERS_LISTS)
|
||||||
|
|
||||||
DISTCLEANFILES = $(GENERATED_ITEMS)
|
DISTCLEANFILES = $(GENERATED_ITEMS)
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug_Broadway|Win32"
|
Name="Debug_Broadway|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -51,7 +51,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release_Broadway|Win32"
|
Name="Release_Broadway|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -84,7 +84,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug_Broadway|x64"
|
Name="Debug_Broadway|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -115,7 +115,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release_Broadway|x64"
|
Name="Release_Broadway|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
|
@ -1,183 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="big5"?>
|
|
||||||
<VisualStudioProject
|
|
||||||
ProjectType="Visual C++"
|
|
||||||
Version="9.00"
|
|
||||||
Name="gailutil-3"
|
|
||||||
ProjectGUID="{A1FCED61-4E51-4015-A70C-5373404D1BA0}"
|
|
||||||
RootNamespace="gailutil3"
|
|
||||||
Keyword="Win32Proj"
|
|
||||||
TargetFrameworkVersion="196613"
|
|
||||||
>
|
|
||||||
<Platforms>
|
|
||||||
<Platform
|
|
||||||
Name="Win32"
|
|
||||||
/>
|
|
||||||
<Platform
|
|
||||||
Name="x64"
|
|
||||||
/>
|
|
||||||
</Platforms>
|
|
||||||
<ToolFiles>
|
|
||||||
</ToolFiles>
|
|
||||||
<Configurations>
|
|
||||||
<Configuration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
|
||||||
ConfigurationType="2"
|
|
||||||
CharacterSet="2"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
Optimization="0"
|
|
||||||
AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
|
|
||||||
PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;GTK_DISABLE_DEPRECATED;GDK_DISABLE_DEPRECATED"
|
|
||||||
MinimalRebuild="true"
|
|
||||||
BasicRuntimeChecks="3"
|
|
||||||
RuntimeLibrary="3"
|
|
||||||
UsePrecompiledHeader="0"
|
|
||||||
WarningLevel="3"
|
|
||||||
DebugInformationFormat="4"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
LinkIncremental="1"
|
|
||||||
AdditionalDependencies="atk-1.0.lib"
|
|
||||||
OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
|
|
||||||
GenerateDebugInformation="true"
|
|
||||||
ModuleDefinitionFile="..\..\..\libgail-util\gailutil.def"
|
|
||||||
ImportLibrary="$(TargetDir)$(ProjectName).0.lib"
|
|
||||||
SubSystem="2"
|
|
||||||
TargetMachine="1"
|
|
||||||
/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="Debug|x64"
|
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
|
||||||
ConfigurationType="2"
|
|
||||||
CharacterSet="2"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
Optimization="0"
|
|
||||||
AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
|
|
||||||
PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;GTK_DISABLE_DEPRECATED;GDK_DISABLE_DEPRECATED"
|
|
||||||
MinimalRebuild="true"
|
|
||||||
BasicRuntimeChecks="3"
|
|
||||||
RuntimeLibrary="3"
|
|
||||||
UsePrecompiledHeader="0"
|
|
||||||
WarningLevel="3"
|
|
||||||
DebugInformationFormat="3"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalDependencies="atk-1.0.lib"
|
|
||||||
OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
|
|
||||||
LinkIncremental="1"
|
|
||||||
ModuleDefinitionFile="..\..\..\libgail-util\gailutil.def"
|
|
||||||
GenerateDebugInformation="true"
|
|
||||||
SubSystem="2"
|
|
||||||
ImportLibrary="$(TargetDir)$(ProjectName).0.lib"
|
|
||||||
TargetMachine="17"
|
|
||||||
/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="Release|Win32"
|
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
|
||||||
ConfigurationType="2"
|
|
||||||
CharacterSet="2"
|
|
||||||
WholeProgramOptimization="1"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
Optimization="2"
|
|
||||||
EnableIntrinsicFunctions="true"
|
|
||||||
AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
|
|
||||||
PreprocessorDefinitions="GTK_DISABLE_DEPRECATED;GDK_DISABLE_DEPRECATED"
|
|
||||||
RuntimeLibrary="2"
|
|
||||||
EnableFunctionLevelLinking="true"
|
|
||||||
UsePrecompiledHeader="0"
|
|
||||||
WarningLevel="3"
|
|
||||||
DebugInformationFormat="3"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
LinkIncremental="1"
|
|
||||||
AdditionalDependencies="atk-1.0.lib"
|
|
||||||
OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
|
|
||||||
GenerateDebugInformation="true"
|
|
||||||
ModuleDefinitionFile="..\..\..\libgail-util\gailutil.def"
|
|
||||||
ImportLibrary="$(TargetDir)$(ProjectName).0.lib"
|
|
||||||
SubSystem="2"
|
|
||||||
OptimizeReferences="2"
|
|
||||||
EnableCOMDATFolding="2"
|
|
||||||
TargetMachine="1"
|
|
||||||
/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="Release|x64"
|
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
|
||||||
ConfigurationType="2"
|
|
||||||
CharacterSet="2"
|
|
||||||
WholeProgramOptimization="1"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
|
|
||||||
PreprocessorDefinitions="GTK_DISABLE_DEPRECATED;GDK_DISABLE_DEPRECATED"
|
|
||||||
RuntimeLibrary="2"
|
|
||||||
UsePrecompiledHeader="0"
|
|
||||||
WarningLevel="3"
|
|
||||||
DebugInformationFormat="3"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalDependencies="atk-1.0.lib"
|
|
||||||
OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
|
|
||||||
LinkIncremental="1"
|
|
||||||
ModuleDefinitionFile="..\..\..\libgail-util\gailutil.def"
|
|
||||||
GenerateDebugInformation="true"
|
|
||||||
SubSystem="2"
|
|
||||||
OptimizeReferences="2"
|
|
||||||
EnableCOMDATFolding="2"
|
|
||||||
ImportLibrary="$(TargetDir)$(ProjectName).0.lib"
|
|
||||||
TargetMachine="17"
|
|
||||||
/>
|
|
||||||
</Configuration>
|
|
||||||
</Configurations>
|
|
||||||
<References>
|
|
||||||
</References>
|
|
||||||
<Files>
|
|
||||||
<Filter
|
|
||||||
Name="Sources"
|
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
|
||||||
>
|
|
||||||
#include "gailutil-3.sourcefiles"
|
|
||||||
</Filter>
|
|
||||||
<Filter
|
|
||||||
Name="Headers"
|
|
||||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
|
||||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
|
||||||
>
|
|
||||||
</Filter>
|
|
||||||
<Filter
|
|
||||||
Name="Resource Files"
|
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
|
||||||
>
|
|
||||||
</Filter>
|
|
||||||
</Files>
|
|
||||||
<Globals>
|
|
||||||
</Globals>
|
|
||||||
</VisualStudioProject>
|
|
@ -2,9 +2,9 @@
|
|||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9.00"
|
Version="9.00"
|
||||||
Name="gdk-3"
|
Name="gdk-4"
|
||||||
ProjectGUID="{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}"
|
ProjectGUID="{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}"
|
||||||
RootNamespace="gdk3"
|
RootNamespace="gdk4"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
TargetFrameworkVersion="0"
|
TargetFrameworkVersion="0"
|
||||||
>
|
>
|
||||||
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-ignore-broadway.vsprops"
|
InheritedPropertySheets=".\gtk4-ignore-broadway.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -53,7 +53,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug_Broadway|Win32"
|
Name="Debug_Broadway|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-copy-gdk-broadway.vsprops"
|
InheritedPropertySheets=".\gtk4-copy-gdk-broadway.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -85,7 +85,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-ignore-broadway.vsprops"
|
InheritedPropertySheets=".\gtk4-ignore-broadway.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -117,7 +117,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release_Broadway|Win32"
|
Name="Release_Broadway|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-copy-gdk-broadway.vsprops"
|
InheritedPropertySheets=".\gtk4-copy-gdk-broadway.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -149,7 +149,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
InheritedPropertySheets=".\gtk3-ignore-broadway.vsprops"
|
InheritedPropertySheets=".\gtk4-ignore-broadway.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -181,7 +181,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug_Broadway|x64"
|
Name="Debug_Broadway|x64"
|
||||||
InheritedPropertySheets=".\gtk3-copy-gdk-broadway.vsprops"
|
InheritedPropertySheets=".\gtk4-copy-gdk-broadway.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -213,7 +213,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
InheritedPropertySheets=".\gtk3-ignore-broadway.vsprops"
|
InheritedPropertySheets=".\gtk4-ignore-broadway.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -245,7 +245,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release_Broadway|x64"
|
Name="Release_Broadway|x64"
|
||||||
InheritedPropertySheets=".\gtk3-copy-gdk-broadway.vsprops"
|
InheritedPropertySheets=".\gtk4-copy-gdk-broadway.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -297,7 +297,7 @@
|
|||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
#include "gdk-3.sourcefiles"
|
#include "gdk-4.sourcefiles"
|
||||||
<File RelativePath="..\..\..\gdk\gdkkeynames.c" />
|
<File RelativePath="..\..\..\gdk\gdkkeynames.c" />
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
@ -2,7 +2,7 @@
|
|||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9.00"
|
Version="9.00"
|
||||||
Name="gdk3-broadway"
|
Name="gdk4-broadway"
|
||||||
ProjectGUID="{1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453}"
|
ProjectGUID="{1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453}"
|
||||||
RootNamespace="gdk3broadway"
|
RootNamespace="gdk3broadway"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug_Broadway|Win32"
|
Name="Debug_Broadway|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -43,7 +43,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release_Broadway|Win32"
|
Name="Release_Broadway|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -63,7 +63,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug_Broadway|x64"
|
Name="Debug_Broadway|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -85,7 +85,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release_Broadway|x64"
|
Name="Release_Broadway|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -124,7 +124,7 @@
|
|||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
#include "gdk3-broadway.sourcefiles"
|
#include "gdk4-broadway.sourcefiles"
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
@ -2,9 +2,9 @@
|
|||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9.00"
|
Version="9.00"
|
||||||
Name="gdk3-win32"
|
Name="gdk4-win32"
|
||||||
ProjectGUID="{ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF}"
|
ProjectGUID="{ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF}"
|
||||||
RootNamespace="gdk3win32"
|
RootNamespace="gdk4win32"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
TargetFrameworkVersion="0"
|
TargetFrameworkVersion="0"
|
||||||
>
|
>
|
||||||
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -43,7 +43,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -63,7 +63,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -85,7 +85,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="4"
|
ConfigurationType="4"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -124,7 +124,7 @@
|
|||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
#include "gdk3-win32.sourcefiles"
|
#include "gdk4-win32.sourcefiles"
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
</VisualStudioProject>
|
</VisualStudioProject>
|
@ -1,13 +1,13 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||||
# Visual Studio 2008
|
# Visual Studio 2008
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk3-prebuild", "gtk3-prebuild.vcproj", "{B98FBE68-B03C-48E3-8F32-C3C010720D30}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk4-prebuild", "gtk4-prebuild.vcproj", "{B98FBE68-B03C-48E3-8F32-C3C010720D30}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk3-win32", "gdk3-win32.vcproj", "{ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk4-win42", "gdk4-win32.vcproj", "{ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{B98FBE68-B03C-48E3-8F32-C3C010720D30} = {B98FBE68-B03C-48E3-8F32-C3C010720D30}
|
{B98FBE68-B03C-48E3-8F32-C3C010720D30} = {B98FBE68-B03C-48E3-8F32-C3C010720D30}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk3-broadway", "gdk3-broadway.vcproj", "{1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk4-broadway", "gdk4-broadway.vcproj", "{1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{B98FBE68-B03C-48E3-8F32-C3C010720D30} = {B98FBE68-B03C-48E3-8F32-C3C010720D30}
|
{B98FBE68-B03C-48E3-8F32-C3C010720D30} = {B98FBE68-B03C-48E3-8F32-C3C010720D30}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
@ -17,24 +17,24 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "broadwayd", "broadwayd.vcpr
|
|||||||
{B98FBE68-B03C-48E3-8F32-C3C010720D30} = {B98FBE68-B03C-48E3-8F32-C3C010720D30}
|
{B98FBE68-B03C-48E3-8F32-C3C010720D30} = {B98FBE68-B03C-48E3-8F32-C3C010720D30}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk-3", "gdk-3.vcproj", "{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdk-4", "gdk-4.vcproj", "{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF} = {ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF}
|
{ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF} = {ABA7685A-7CBB-4626-B5E5-6EEEA5B489EF}
|
||||||
{1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453} = {1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453}
|
{1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453} = {1DF4C475-4472-4EE4-AC2B-3AB5A4C1A453}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-3", "gtk-3.vcproj", "{95A4B53D-2773-4406-A2C1-8FD2840BBAD8}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-4", "gtk-4.vcproj", "{95A4B53D-2773-4406-A2C1-8FD2840BBAD8}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk3-demo", "gtk3-demo.vcproj", "{BDAE6DE2-6BCC-4107-94F0-DA12214A02DE}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk4-demo", "gtk4-demo.vcproj", "{BDAE6DE2-6BCC-4107-94F0-DA12214A02DE}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
||||||
{95A4B53D-2773-4406-A2C1-8FD2840BBAD8} = {95A4B53D-2773-4406-A2C1-8FD2840BBAD8}
|
{95A4B53D-2773-4406-A2C1-8FD2840BBAD8} = {95A4B53D-2773-4406-A2C1-8FD2840BBAD8}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk3-demo-application", "gtk3-demo-application.vcproj", "{BE6B4973-C6FF-4C8F-8E97-A47793C50F44}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk4-demo-application", "gtk4-demo-application.vcproj", "{BE6B4973-C6FF-4C8F-8E97-A47793C50F44}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
||||||
{95A4B53D-2773-4406-A2C1-8FD2840BBAD8} = {95A4B53D-2773-4406-A2C1-8FD2840BBAD8}
|
{95A4B53D-2773-4406-A2C1-8FD2840BBAD8} = {95A4B53D-2773-4406-A2C1-8FD2840BBAD8}
|
||||||
@ -45,7 +45,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-encode-symbolic-svg", "
|
|||||||
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk3-icon-browser", "gtk3-icon-browser.vcproj", "{343333C4-D46C-4C97-A986-959CCA6F1DE0}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk4-icon-browser", "gtk4-icon-browser.vcproj", "{343333C4-D46C-4C97-A986-959CCA6F1DE0}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
||||||
{95A4B53D-2773-4406-A2C1-8FD2840BBAD8} = {95A4B53D-2773-4406-A2C1-8FD2840BBAD8}
|
{95A4B53D-2773-4406-A2C1-8FD2840BBAD8} = {95A4B53D-2773-4406-A2C1-8FD2840BBAD8}
|
||||||
@ -68,7 +68,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk-query-settings", "gtk-q
|
|||||||
{95A4B53D-2773-4406-A2C1-8FD2840BBAD8} = {95A4B53D-2773-4406-A2C1-8FD2840BBAD8}
|
{95A4B53D-2773-4406-A2C1-8FD2840BBAD8} = {95A4B53D-2773-4406-A2C1-8FD2840BBAD8}
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk3-install", "gtk3-install.vcproj", "{23BBF35F-78AF-4E8C-983F-7B90448CD7DF}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtk4-install", "gtk4-install.vcproj", "{23BBF35F-78AF-4E8C-983F-7B90448CD7DF}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
{5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8} = {5AE8F5CE-9103-4951-AEDE-EA2F3B573BE8}
|
||||||
{95A4B53D-2773-4406-A2C1-8FD2840BBAD8} = {95A4B53D-2773-4406-A2C1-8FD2840BBAD8}
|
{95A4B53D-2773-4406-A2C1-8FD2840BBAD8} = {95A4B53D-2773-4406-A2C1-8FD2840BBAD8}
|
@ -2,9 +2,9 @@
|
|||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9.00"
|
Version="9.00"
|
||||||
Name="gtk-3"
|
Name="gtk-4"
|
||||||
ProjectGUID="{95A4B53D-2773-4406-A2C1-8FD2840BBAD8}"
|
ProjectGUID="{95A4B53D-2773-4406-A2C1-8FD2840BBAD8}"
|
||||||
RootNamespace="gtk3"
|
RootNamespace="gtk4"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
TargetFrameworkVersion="0"
|
TargetFrameworkVersion="0"
|
||||||
>
|
>
|
||||||
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -53,7 +53,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -85,7 +85,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -117,7 +117,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
ConfigurationType="2"
|
ConfigurationType="2"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -222,45 +222,45 @@
|
|||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
<File RelativePath="..\..\..\gtk\libgtk3.manifest.in">
|
<File RelativePath="..\..\..\gtk\libgtk4.manifest.in">
|
||||||
<FileConfiguration Name="Debug|Win32">
|
<FileConfiguration Name="Debug|Win32">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating GTK+ Win32 Manifest..."
|
Description="Generating GTK+ Win32 Manifest..."
|
||||||
CommandLine="$(GenerateGtkWin32Manifest)"
|
CommandLine="$(GenerateGtkWin32Manifest)"
|
||||||
Outputs="..\..\..\gtk\libgtk3.manifest"
|
Outputs="..\..\..\gtk\libgtk4.manifest"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration Name="Release|Win32">
|
<FileConfiguration Name="Release|Win32">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating GTK+ Win32 Manifest..."
|
Description="Generating GTK+ Win32 Manifest..."
|
||||||
CommandLine="$(GenerateGtkWin32Manifest)"
|
CommandLine="$(GenerateGtkWin32Manifest)"
|
||||||
Outputs="..\..\..\gtk\libgtk3.manifest"
|
Outputs="..\..\..\gtk\libgtk4.manifest"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration Name="Debug|x64">
|
<FileConfiguration Name="Debug|x64">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating GTK+ Win32 Manifest..."
|
Description="Generating GTK+ Win32 Manifest..."
|
||||||
CommandLine="$(GenerateGtkWin32Manifest)"
|
CommandLine="$(GenerateGtkWin32Manifest)"
|
||||||
Outputs="..\..\..\gtk\libgtk3.manifest"
|
Outputs="..\..\..\gtk\libgtk4.manifest"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration Name="Release|x64">
|
<FileConfiguration Name="Release|x64">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating GTK+ Win32 Manifest..."
|
Description="Generating GTK+ Win32 Manifest..."
|
||||||
CommandLine="$(GenerateGtkWin32Manifest)"
|
CommandLine="$(GenerateGtkWin32Manifest)"
|
||||||
Outputs="..\..\..\gtk\libgtk3.manifest"
|
Outputs="..\..\..\gtk\libgtk4.manifest"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
||||||
<File RelativePath="..\..\..\gtk\gtk-win32.rc" />
|
<File RelativePath="..\..\..\gtk\gtk-win32.rc" />
|
||||||
<File RelativePath="..\..\..\gtk\libgtk3.manifest" />
|
<File RelativePath="..\..\..\gtk\libgtk4.manifest" />
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
#include "gtk-3.sourcefiles"
|
#include "gtk-4.sourcefiles"
|
||||||
<File RelativePath="..\..\..\modules\input\gtkimcontextime.c" />
|
<File RelativePath="..\..\..\modules\input\gtkimcontextime.c" />
|
||||||
<File RelativePath="..\..\..\modules\input\gtkimcontextmultipress.c" />
|
<File RelativePath="..\..\..\modules\input\gtkimcontextmultipress.c" />
|
||||||
<File RelativePath="..\..\..\modules\input\gtkimcontextthai.c" />
|
<File RelativePath="..\..\..\modules\input\gtkimcontextthai.c" />
|
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="1"
|
CharacterSet="1"
|
||||||
>
|
>
|
||||||
@ -49,7 +49,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="1"
|
CharacterSet="1"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -80,7 +80,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -111,7 +111,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -51,7 +51,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -84,7 +84,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -115,7 +115,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="1"
|
CharacterSet="1"
|
||||||
>
|
>
|
||||||
@ -49,7 +49,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="1"
|
CharacterSet="1"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -80,7 +80,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -111,7 +111,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="1"
|
CharacterSet="1"
|
||||||
>
|
>
|
||||||
@ -49,7 +49,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="1"
|
CharacterSet="1"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -80,7 +80,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -111,7 +111,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
<VisualStudioPropertySheet
|
<VisualStudioPropertySheet
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="8.00"
|
Version="8.00"
|
||||||
Name="gtk3builddefinesprops"
|
Name="gtk4builddefinesprops"
|
||||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin"
|
OutputDirectory="$(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin"
|
||||||
IntermediateDirectory="$(SolutionDir)$(ConfigurationName)\$(PlatformName)\obj\$(ProjectName)\"
|
IntermediateDirectory="$(SolutionDir)$(ConfigurationName)\$(PlatformName)\obj\$(ProjectName)\"
|
||||||
InheritedPropertySheets=".\gtk3-version-paths.vsprops"
|
InheritedPropertySheets=".\gtk4-version-paths.vsprops"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
@ -21,7 +21,7 @@
|
|||||||
/>
|
/>
|
||||||
<UserMacro
|
<UserMacro
|
||||||
Name="GtkBinaryVersion"
|
Name="GtkBinaryVersion"
|
||||||
Value="3.0.0"
|
Value="4.0.0"
|
||||||
/>
|
/>
|
||||||
<UserMacro
|
<UserMacro
|
||||||
Name="GtkDummyPrefix"
|
Name="GtkDummyPrefix"
|
@ -2,8 +2,8 @@
|
|||||||
<VisualStudioPropertySheet
|
<VisualStudioPropertySheet
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="8.00"
|
Version="8.00"
|
||||||
Name="gtk3copygdkbroadwayprops"
|
Name="gtk4copygdkbroadwayprops"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
@ -2,9 +2,9 @@
|
|||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9.00"
|
Version="9.00"
|
||||||
Name="gtk3-demo-application"
|
Name="gtk4-demo-application"
|
||||||
ProjectGUID="{BE6B4973-C6FF-4C8F-8E97-A47793C50F44}"
|
ProjectGUID="{BE6B4973-C6FF-4C8F-8E97-A47793C50F44}"
|
||||||
RootNamespace="gtk3demoapplication"
|
RootNamespace="gtk4demoapplication"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
TargetFrameworkVersion="196613"
|
TargetFrameworkVersion="196613"
|
||||||
>
|
>
|
||||||
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -49,7 +49,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -80,7 +80,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -109,7 +109,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -148,7 +148,7 @@
|
|||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
#include "gtk3-demo-application.sourcefiles"
|
#include "gtk4-demo-application.sourcefiles"
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Headers"
|
Name="Headers"
|
@ -2,9 +2,9 @@
|
|||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9.00"
|
Version="9.00"
|
||||||
Name="gtk3-demo"
|
Name="gtk4-demo"
|
||||||
ProjectGUID="{BDAE6DE2-6BCC-4107-94F0-DA12214A02DE}"
|
ProjectGUID="{BDAE6DE2-6BCC-4107-94F0-DA12214A02DE}"
|
||||||
RootNamespace="gtk3demo"
|
RootNamespace="gtk4demo"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
TargetFrameworkVersion="131072"
|
TargetFrameworkVersion="131072"
|
||||||
>
|
>
|
||||||
@ -22,7 +22,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
@ -55,7 +55,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
@ -88,7 +88,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
>
|
>
|
||||||
@ -121,7 +121,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
>
|
>
|
||||||
@ -160,7 +160,7 @@
|
|||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
#include "gtk3-demo.sourcefiles"
|
#include "gtk4-demo.sourcefiles"
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
@ -2,8 +2,8 @@
|
|||||||
<VisualStudioPropertySheet
|
<VisualStudioPropertySheet
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="8.00"
|
Version="8.00"
|
||||||
Name="gtk3gensrcsprops"
|
Name="gtk4gensrcsprops"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
>
|
>
|
||||||
<UserMacro
|
<UserMacro
|
||||||
Name="GenConfigH"
|
Name="GenConfigH"
|
||||||
@ -72,7 +72,7 @@ echo $(ConfigurationName) > ..\..\..\MSVC_$(ConfigurationName)_Broadway
|
|||||||
/>
|
/>
|
||||||
<UserMacro
|
<UserMacro
|
||||||
Name="GenerateGtkWin32Manifest"
|
Name="GenerateGtkWin32Manifest"
|
||||||
Value="$(PythonPath)\python ..\replace.py --action=replace-var --input=..\..\..\gtk\libgtk3.manifest.in --output=..\..\..\gtk\libgtk3.manifest --var=EXE_MANIFEST_ARCHITECTURE --outstring=*"
|
Value="$(PythonPath)\python ..\replace.py --action=replace-var --input=..\..\..\gtk\libgtk4.manifest.in --output=..\..\..\gtk\libgtk4.manifest --var=EXE_MANIFEST_ARCHITECTURE --outstring=*"
|
||||||
/>
|
/>
|
||||||
<UserMacro
|
<UserMacro
|
||||||
Name="CopyDemosH"
|
Name="CopyDemosH"
|
@ -2,9 +2,9 @@
|
|||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9.00"
|
Version="9.00"
|
||||||
Name="gtk3-icon-browser"
|
Name="gtk4-icon-browser"
|
||||||
ProjectGUID="{343333C4-D46C-4C97-A986-959CCA6F1DE0}"
|
ProjectGUID="{343333C4-D46C-4C97-A986-959CCA6F1DE0}"
|
||||||
RootNamespace="gtk3iconbrowser"
|
RootNamespace="gtk4iconbrowser"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
TargetFrameworkVersion="196613"
|
TargetFrameworkVersion="196613"
|
||||||
>
|
>
|
||||||
@ -21,7 +21,7 @@
|
|||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -51,7 +51,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -84,7 +84,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
@ -115,7 +115,7 @@
|
|||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -156,7 +156,7 @@
|
|||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
#include "gtk3-icon-browser.sourcefiles"
|
#include "gtk4-icon-browser.sourcefiles"
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Headers"
|
Name="Headers"
|
@ -2,13 +2,13 @@
|
|||||||
<VisualStudioPropertySheet
|
<VisualStudioPropertySheet
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="8.00"
|
Version="8.00"
|
||||||
Name="gtk3ignorebroadwayprops"
|
Name="gtk4ignorebroadwayprops"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
LinkLibraryDependencies="false"
|
LinkLibraryDependencies="false"
|
||||||
AdditionalDependencies="$(OutDir)\gdk3-win32.lib"
|
AdditionalDependencies="$(OutDir)\gdk4-win32.lib"
|
||||||
AdditionalOptions="/EXPORT:gdk_win32_display_manager_get_type"
|
AdditionalOptions="/EXPORT:gdk_win32_display_manager_get_type"
|
||||||
/>
|
/>
|
||||||
</VisualStudioPropertySheet>
|
</VisualStudioPropertySheet>
|
@ -2,9 +2,9 @@
|
|||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9.00"
|
Version="9.00"
|
||||||
Name="gtk3-install"
|
Name="gtk4-install"
|
||||||
ProjectGUID="{23BBF35F-78AF-4E8C-983F-7B90448CD7DF}"
|
ProjectGUID="{23BBF35F-78AF-4E8C-983F-7B90448CD7DF}"
|
||||||
RootNamespace="gtk3install"
|
RootNamespace="gtk4install"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
TargetFrameworkVersion="131072"
|
TargetFrameworkVersion="131072"
|
||||||
>
|
>
|
||||||
@ -23,7 +23,7 @@
|
|||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory="$(GlibEtcInstallRoot)"
|
OutputDirectory="$(GlibEtcInstallRoot)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-install.vsprops"
|
InheritedPropertySheets=".\gtk4-install.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
>
|
>
|
||||||
@ -36,7 +36,7 @@
|
|||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
OutputDirectory="$(GlibEtcInstallRoot)"
|
OutputDirectory="$(GlibEtcInstallRoot)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-install.vsprops"
|
InheritedPropertySheets=".\gtk4-install.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
>
|
>
|
||||||
@ -50,7 +50,7 @@
|
|||||||
OutputDirectory="$(GlibEtcInstallRoot)"
|
OutputDirectory="$(GlibEtcInstallRoot)"
|
||||||
IntermediateDirectory="$(ConfigurationName)"
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-install.vsprops"
|
InheritedPropertySheets=".\gtk4-install.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
>
|
>
|
||||||
@ -63,7 +63,7 @@
|
|||||||
Name="Debug_Broadway|x64"
|
Name="Debug_Broadway|x64"
|
||||||
OutputDirectory="$(GlibEtcInstallRoot)"
|
OutputDirectory="$(GlibEtcInstallRoot)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-install.vsprops"
|
InheritedPropertySheets=".\gtk4-install.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
>
|
>
|
||||||
@ -77,7 +77,7 @@
|
|||||||
OutputDirectory="$(GlibEtcInstallRoot)"
|
OutputDirectory="$(GlibEtcInstallRoot)"
|
||||||
IntermediateDirectory="$(ConfigurationName)"
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-install.vsprops"
|
InheritedPropertySheets=".\gtk4-install.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -91,7 +91,7 @@
|
|||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
OutputDirectory="$(GlibEtcInstallRoot)"
|
OutputDirectory="$(GlibEtcInstallRoot)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-install.vsprops"
|
InheritedPropertySheets=".\gtk4-install.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -106,7 +106,7 @@
|
|||||||
OutputDirectory="$(GlibEtcInstallRoot)"
|
OutputDirectory="$(GlibEtcInstallRoot)"
|
||||||
IntermediateDirectory="$(ConfigurationName)"
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-install.vsprops"
|
InheritedPropertySheets=".\gtk4-install.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -120,7 +120,7 @@
|
|||||||
Name="Release_Broadway|x64"
|
Name="Release_Broadway|x64"
|
||||||
OutputDirectory="$(GlibEtcInstallRoot)"
|
OutputDirectory="$(GlibEtcInstallRoot)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-install.vsprops"
|
InheritedPropertySheets=".\gtk4-install.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -144,56 +144,56 @@
|
|||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating .pc files..."
|
Description="Generating .pc files..."
|
||||||
CommandLine="$(GenerateGtkPC)"
|
CommandLine="$(GenerateGtkPC)"
|
||||||
Outputs="..\gdk-3.0.pc;..\gtk+-3.0.pc;..\gail-3.0.pc"
|
Outputs="..\gdk-4.0.pc;..\gtk+-4.0.pc;..\gail-4.0.pc"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration Name="Release|Win32">
|
<FileConfiguration Name="Release|Win32">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating .pc files..."
|
Description="Generating .pc files..."
|
||||||
CommandLine="$(GenerateGtkPC)"
|
CommandLine="$(GenerateGtkPC)"
|
||||||
Outputs="..\gdk-3.0.pc;..\gtk+-3.0.pc;..\gail-3.0.pc"
|
Outputs="..\gdk-4.0.pc;..\gtk+-4.0.pc;..\gail-4.0.pc"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration Name="Debug|x64">
|
<FileConfiguration Name="Debug|x64">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating .pc files..."
|
Description="Generating .pc files..."
|
||||||
CommandLine="$(GenerateGtkPCX64)"
|
CommandLine="$(GenerateGtkPCX64)"
|
||||||
Outputs="..\gdk-3.0.pc;..\gtk+-3.0.pc;..\gail-3.0.pc"
|
Outputs="..\gdk-4.0.pc;..\gtk+-4.0.pc;..\gail-4.0.pc"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration Name="Release|x64">
|
<FileConfiguration Name="Release|x64">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating .pc files..."
|
Description="Generating .pc files..."
|
||||||
CommandLine="$(GenerateGtkPCX64)"
|
CommandLine="$(GenerateGtkPCX64)"
|
||||||
Outputs="..\gdk-3.0.pc;..\gtk+-3.0.pc;..\gail-3.0.pc"
|
Outputs="..\gdk-4.0.pc;..\gtk+-4.0.pc;..\gail-4.0.pc"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration Name="Debug_Broadway|Win32">
|
<FileConfiguration Name="Debug_Broadway|Win32">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating .pc files..."
|
Description="Generating .pc files..."
|
||||||
CommandLine="$(GenerateGtkPC) --broadway"
|
CommandLine="$(GenerateGtkPC) --broadway"
|
||||||
Outputs="..\gdk-3.0.pc;..\gtk+-3.0.pc;..\gail-3.0.pc"
|
Outputs="..\gdk-4.0.pc;..\gtk+-4.0.pc;..\gail-4.0.pc"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration Name="Release_Broadway|Win32">
|
<FileConfiguration Name="Release_Broadway|Win32">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating .pc files..."
|
Description="Generating .pc files..."
|
||||||
CommandLine="$(GenerateGtkPC) --broadway"
|
CommandLine="$(GenerateGtkPC) --broadway"
|
||||||
Outputs="..\gdk-3.0.pc;..\gtk+-3.0.pc;..\gail-3.0.pc"
|
Outputs="..\gdk-4.0.pc;..\gtk+-4.0.pc;..\gail-4.0.pc"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration Name="Debug_Broadway|x64">
|
<FileConfiguration Name="Debug_Broadway|x64">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating .pc files..."
|
Description="Generating .pc files..."
|
||||||
CommandLine="$(GenerateGtkPCX64) --broadway"
|
CommandLine="$(GenerateGtkPCX64) --broadway"
|
||||||
Outputs="..\gdk-3.0.pc;..\gtk+-3.0.pc;..\gail-3.0.pc"
|
Outputs="..\gdk-4.0.pc;..\gtk+-4.0.pc;..\gail-4.0.pc"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
<FileConfiguration Name="Release_Broadway|x64">
|
<FileConfiguration Name="Release_Broadway|x64">
|
||||||
<Tool Name="VCCustomBuildTool"
|
<Tool Name="VCCustomBuildTool"
|
||||||
Description="Generating .pc files..."
|
Description="Generating .pc files..."
|
||||||
CommandLine="$(GenerateGtkPCX64) --broadway"
|
CommandLine="$(GenerateGtkPCX64) --broadway"
|
||||||
Outputs="..\gdk-3.0.pc;..\gtk+-3.0.pc;..\gail-3.0.pc"
|
Outputs="..\gdk-4.0.pc;..\gtk+-4.0.pc;..\gail-4.0.pc"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
</File>
|
</File>
|
@ -3,7 +3,7 @@
|
|||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="8.00"
|
Version="8.00"
|
||||||
Name="gtkinstallprops"
|
Name="gtkinstallprops"
|
||||||
InheritedPropertySheets=".\gtk3-build-defines.vsprops"
|
InheritedPropertySheets=".\gtk4-build-defines.vsprops"
|
||||||
>
|
>
|
||||||
<UserMacro
|
<UserMacro
|
||||||
Name="GtkDoInstallBin"
|
Name="GtkDoInstallBin"
|
||||||
@ -11,24 +11,22 @@
|
|||||||
mkdir $(CopyDir)\bin

|
mkdir $(CopyDir)\bin

|
||||||
mkdir $(CopyDir)\lib\pkgconfig

|
mkdir $(CopyDir)\lib\pkgconfig

|
||||||
|
|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\$(GtkDllPrefix)gdk-3$(GtkDllSuffix).dll $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\$(GtkDllPrefix)gdk-4$(GtkDllSuffix).dll $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\$(GtkDllPrefix)gdk-3$(GtkDllSuffix).pdb $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\$(GtkDllPrefix)gdk-4$(GtkDllSuffix).pdb $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gdk-$(ApiVersion).lib $(CopyDir)\lib

|
copy $(ConfigurationName)\$(PlatformName)\bin\gdk-$(ApiVersion).lib $(CopyDir)\lib

|
||||||
|
|
||||||
if "$(ConfigurationName)" == "Release_Broadway" goto DO_BROADWAY_BIN

|
if "$(ConfigurationName)" == "Release_Broadway" goto DO_BROADWAY_BIN

|
||||||
if "$(ConfigurationName)" == "Debug_Broadway" goto DO_BROADWAY_BIN

|
if "$(ConfigurationName)" == "Debug_Broadway" goto DO_BROADWAY_BIN

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).dll $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).dll $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).pdb $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).pdb $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).dll $(CopyDir)\bin

|
|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).pdb $(CopyDir)\bin

|
|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gtk-$(ApiVersion).lib $(CopyDir)\lib

|
copy $(ConfigurationName)\$(PlatformName)\bin\gtk-$(ApiVersion).lib $(CopyDir)\lib

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gailutil-$(ApiVersion).lib $(CopyDir)\lib

|
copy $(ConfigurationName)\$(PlatformName)\bin\gailutil-$(ApiVersion).lib $(CopyDir)\lib

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gtk3-demo.exe $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\gtk4-demo.exe $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gtk3-demo.pdb $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\gtk4-demo.pdb $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gtk3-demo-application.exe $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\gtk4-demo-application.exe $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gtk3-demo-application.pdb $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\gtk4-demo-application.pdb $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gtk3-icon-browser.exe $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\gtk4-icon-browser.exe $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gtk3-icon-browser.pdb $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\gtk4-icon-browser.pdb $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gtk-encode-symbolic-svg.exe $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\gtk-encode-symbolic-svg.exe $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gtk-encode-symbolic-svg.pdb $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\gtk-encode-symbolic-svg.pdb $(CopyDir)\bin

|
||||||
copy $(ConfigurationName)\$(PlatformName)\bin\gtk-update-icon-cache.exe $(CopyDir)\bin

|
copy $(ConfigurationName)\$(PlatformName)\bin\gtk-update-icon-cache.exe $(CopyDir)\bin

|
||||||
@ -46,18 +44,16 @@ copy $(ConfigurationName)\$(PlatformName)\bin\broadwayd.pdb $(CopyDir)\bin
|
|||||||
if "$(ConfigurationName)" == "Release_Broadway" goto DO_BROADWAY_RELEASE

|
if "$(ConfigurationName)" == "Release_Broadway" goto DO_BROADWAY_RELEASE

|
||||||
if "$(ConfigurationName)" == "Debug_Broadway" goto DO_BROADWAY_DEBUG

|
if "$(ConfigurationName)" == "Debug_Broadway" goto DO_BROADWAY_DEBUG

|
||||||
:DO_BROADWAY_RELEASE

|
:DO_BROADWAY_RELEASE

|
||||||
copy .\Release\$(PlatformName)\bin\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).dll $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).dll $(CopyDir)\bin

|
||||||
copy .\Release\$(PlatformName)\bin\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).pdb $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).pdb $(CopyDir)\bin

|
||||||
copy .\Release\$(PlatformName)\bin\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).dll $(CopyDir)\bin

|
|
||||||
copy .\Release\$(PlatformName)\bin\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).pdb $(CopyDir)\bin

|
|
||||||
copy .\Release\$(PlatformName)\bin\gtk-$(ApiVersion).lib $(CopyDir)\lib

|
copy .\Release\$(PlatformName)\bin\gtk-$(ApiVersion).lib $(CopyDir)\lib

|
||||||
copy .\Release\$(PlatformName)\bin\gailutil-$(ApiVersion).lib $(CopyDir)\lib

|
copy .\Release\$(PlatformName)\bin\gailutil-$(ApiVersion).lib $(CopyDir)\lib

|
||||||
copy .\Release\$(PlatformName)\bin\gtk3-demo.exe $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\gtk4-demo.exe $(CopyDir)\bin

|
||||||
copy .\Release\$(PlatformName)\bin\gtk3-demo.pdb $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\gtk4-demo.pdb $(CopyDir)\bin

|
||||||
copy .\Release\$(PlatformName)\bin\gtk3-demo-application.exe $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\gtk4-demo-application.exe $(CopyDir)\bin

|
||||||
copy .\Release\$(PlatformName)\bin\gtk3-demo-application.pdb $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\gtk4-demo-application.pdb $(CopyDir)\bin

|
||||||
copy .\Release\$(PlatformName)\bin\gtk3-icon-browser.exe $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\gtk4-icon-browser.exe $(CopyDir)\bin

|
||||||
copy .\Release\$(PlatformName)\bin\gtk3-icon-browser.pdb $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\gtk4-icon-browser.pdb $(CopyDir)\bin

|
||||||
copy .\Release\$(PlatformName)\bin\gtk-encode-symbolic-svg.exe $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\gtk-encode-symbolic-svg.exe $(CopyDir)\bin

|
||||||
copy .\Release\$(PlatformName)\bin\gtk-encode-symbolic-svg.pdb $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\gtk-encode-symbolic-svg.pdb $(CopyDir)\bin

|
||||||
copy .\Release\$(PlatformName)\bin\gtk-update-icon-cache.exe $(CopyDir)\bin

|
copy .\Release\$(PlatformName)\bin\gtk-update-icon-cache.exe $(CopyDir)\bin

|
||||||
@ -69,18 +65,16 @@ copy .\Release\$(PlatformName)\bin\gtk-builder-tool.pdb $(CopyDir)\bin
�
|
|||||||
goto DONE_BIN

|
goto DONE_BIN

|
||||||
|
|
||||||
:DO_BROADWAY_DEBUG

|
:DO_BROADWAY_DEBUG

|
||||||
copy .\Debug\$(PlatformName)\bin\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).dll $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).dll $(CopyDir)\bin

|
||||||
copy .\Debug\$(PlatformName)\bin\$(GtkDllPrefix)gtk-3$(GtkDllSuffix).pdb $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\$(GtkDllPrefix)gtk-4$(GtkDllSuffix).pdb $(CopyDir)\bin

|
||||||
copy .\Debug\$(PlatformName)\bin\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).dll $(CopyDir)\bin

|
|
||||||
copy .\Debug\$(PlatformName)\bin\$(GtkDllPrefix)gailutil-3$(GtkDllSuffix).pdb $(CopyDir)\bin

|
|
||||||
copy .\Debug\$(PlatformName)\bin\gtk-$(ApiVersion).lib $(CopyDir)\lib

|
copy .\Debug\$(PlatformName)\bin\gtk-$(ApiVersion).lib $(CopyDir)\lib

|
||||||
copy .\Debug\$(PlatformName)\bin\gailutil-$(ApiVersion).lib $(CopyDir)\lib

|
copy .\Debug\$(PlatformName)\bin\gailutil-$(ApiVersion).lib $(CopyDir)\lib

|
||||||
copy .\Debug\$(PlatformName)\bin\gtk3-demo.exe $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\gtk4-demo.exe $(CopyDir)\bin

|
||||||
copy .\Debug\$(PlatformName)\bin\gtk3-demo.pdb $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\gtk4-demo.pdb $(CopyDir)\bin

|
||||||
copy .\Debug\$(PlatformName)\bin\gtk3-demo-application.exe $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\gtk4-demo-application.exe $(CopyDir)\bin

|
||||||
copy .\Debug\$(PlatformName)\bin\gtk3-demo-application.pdb $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\gtk4-demo-application.pdb $(CopyDir)\bin

|
||||||
copy .\Debug\$(PlatformName)\bin\gtk3-icon-browser.exe $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\gtk4-icon-browser.exe $(CopyDir)\bin

|
||||||
copy .\Debug\$(PlatformName)\bin\gtk3-icon-browser.pdb $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\gtk4-icon-browser.pdb $(CopyDir)\bin

|
||||||
copy .\Debug\$(PlatformName)\bin\gtk-encode-symbolic-svg.exe $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\gtk-encode-symbolic-svg.exe $(CopyDir)\bin

|
||||||
copy .\Debug\$(PlatformName)\bin\gtk-encode-symbolic-svg.pdb $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\gtk-encode-symbolic-svg.pdb $(CopyDir)\bin

|
||||||
copy .\Debug\$(PlatformName)\bin\gtk-update-icon-cache.exe $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\gtk-update-icon-cache.exe $(CopyDir)\bin

|
||||||
@ -91,9 +85,9 @@ copy .\Debug\$(PlatformName)\bin\gtk-builder-tool.exe $(CopyDir)\bin

|
|||||||
copy .\Debug\$(PlatformName)\bin\gtk-builder-tool.pdb $(CopyDir)\bin

|
copy .\Debug\$(PlatformName)\bin\gtk-builder-tool.pdb $(CopyDir)\bin

|
||||||
:DONE_BIN

|
:DONE_BIN

|
||||||
|
|
||||||
copy ..\gdk-3.0.pc $(CopyDir)\lib\pkgconfig

|
copy ..\gdk-4.0.pc $(CopyDir)\lib\pkgconfig

|
||||||
copy "..\gtk+-3.0.pc" $(CopyDir)\lib\pkgconfig

|
copy "..\gtk+-4.0.pc" $(CopyDir)\lib\pkgconfig

|
||||||
copy ..\gail-3.0.pc $(CopyDir)\lib\pkgconfig

|
copy ..\gail-4.0.pc $(CopyDir)\lib\pkgconfig

|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
<UserMacro
|
<UserMacro
|
||||||
@ -104,28 +98,25 @@ mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\win32

|
|||||||
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\deprecated

|
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\deprecated

|
||||||
|
|
||||||
copy ..\..\..\gdk\win32\gdkwin32.h $(CopyDir)\include\gtk-$(ApiVersion)\gdk

|
copy ..\..\..\gdk\win32\gdkwin32.h $(CopyDir)\include\gtk-$(ApiVersion)\gdk

|
||||||
#include "gdk-3.headers"
|
#include "gdk-4.headers"
|
||||||
#include "gdk3-win32.headers"
|
#include "gdk4-win32.headers"
|
||||||
|
|
||||||
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gtk\a11y

|
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gtk\a11y

|
||||||
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gtk\deprecated

|
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gtk\deprecated

|
||||||
#include "gtk-3.headers"
|
#include "gtk-4.headers"
|
||||||
|
|
||||||
mkdir $(CopyDir)\include\gail-$(ApiVersion)\libgail-util

|
|
||||||
#include "gailutil-3.headers"
|
|
||||||
|
|
||||||
mkdir $(CopyDir)\share\icons\hicolor\16x16\apps

|
mkdir $(CopyDir)\share\icons\hicolor\16x16\apps

|
||||||
copy ..\..\..\demos\gtk-demo\data\16x16\gtk3-demo.png $(CopyDir)\share\icons\hicolor\16x16\apps\

|
copy ..\..\..\demos\gtk-demo\data\16x16\gtk4-demo.png $(CopyDir)\share\icons\hicolor\16x16\apps\

|
||||||
mkdir $(CopyDir)\share\icons\hicolor\22x22\apps

|
mkdir $(CopyDir)\share\icons\hicolor\22x22\apps

|
||||||
copy ..\..\..\demos\gtk-demo\data\22x22\gtk3-demo.png $(CopyDir)\share\icons\hicolor\22x22\apps\

|
copy ..\..\..\demos\gtk-demo\data\22x22\gtk4-demo.png $(CopyDir)\share\icons\hicolor\22x22\apps\

|
||||||
mkdir $(CopyDir)\share\icons\hicolor\24x24\apps

|
mkdir $(CopyDir)\share\icons\hicolor\24x24\apps

|
||||||
copy ..\..\..\demos\gtk-demo\data\24x24\gtk3-demo.png $(CopyDir)\share\icons\hicolor\24x24\apps\

|
copy ..\..\..\demos\gtk-demo\data\24x24\gtk4-demo.png $(CopyDir)\share\icons\hicolor\24x24\apps\

|
||||||
mkdir $(CopyDir)\share\icons\hicolor\32x32\apps

|
mkdir $(CopyDir)\share\icons\hicolor\32x32\apps

|
||||||
copy ..\..\..\demos\gtk-demo\data\32x32\gtk3-demo.png $(CopyDir)\share\icons\hicolor\32x32\apps\

|
copy ..\..\..\demos\gtk-demo\data\32x32\gtk4-demo.png $(CopyDir)\share\icons\hicolor\32x32\apps\

|
||||||
mkdir $(CopyDir)\share\icons\hicolor\48x48\apps

|
mkdir $(CopyDir)\share\icons\hicolor\48x48\apps

|
||||||
copy ..\..\..\demos\gtk-demo\data\48x48\gtk3-demo.png $(CopyDir)\share\icons\hicolor\48x48\apps\

|
copy ..\..\..\demos\gtk-demo\data\48x48\gtk4-demo.png $(CopyDir)\share\icons\hicolor\48x48\apps\

|
||||||
mkdir $(CopyDir)\share\icons\hicolor\256x256\apps

|
mkdir $(CopyDir)\share\icons\hicolor\256x256\apps

|
||||||
copy ..\..\..\demos\gtk-demo\data\256x256\gtk3-demo.png $(CopyDir)\share\icons\hicolor\256x256\apps\

|
copy ..\..\..\demos\gtk-demo\data\256x256\gtk4-demo.png $(CopyDir)\share\icons\hicolor\256x256\apps\

|
||||||
|
|
||||||
mkdir $(CopyDir)\share\glib-2.0\schemas

|
mkdir $(CopyDir)\share\glib-2.0\schemas

|
||||||
copy ..\..\..\gtk\org.gtk.Settings.FileChooser.gschema.xml $(CopyDir)\share\glib-2.0\schemas

|
copy ..\..\..\gtk\org.gtk.Settings.FileChooser.gschema.xml $(CopyDir)\share\glib-2.0\schemas

|
||||||
@ -149,7 +140,7 @@ $(CopyDir)\bin\gtk-update-icon-cache.exe --ignore-theme-index --force "$(Co
|
|||||||
Value="
|
Value="
|
||||||
copy ..\..\..\gdk\broadway\gdkbroadway.h $(CopyDir)\include\gtk-$(ApiVersion)\gdk

|
copy ..\..\..\gdk\broadway\gdkbroadway.h $(CopyDir)\include\gtk-$(ApiVersion)\gdk

|
||||||
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\broadway

|
mkdir $(CopyDir)\include\gtk-$(ApiVersion)\gdk\broadway

|
||||||
#include "gdk3-broadway.headers"
|
#include "gdk4-broadway.headers"
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
<UserMacro
|
<UserMacro
|
@ -2,9 +2,9 @@
|
|||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9.00"
|
Version="9.00"
|
||||||
Name="gtk3-prebuild"
|
Name="gtk4-prebuild"
|
||||||
ProjectGUID="{B98FBE68-B03C-48E3-8F32-C3C010720D30}"
|
ProjectGUID="{B98FBE68-B03C-48E3-8F32-C3C010720D30}"
|
||||||
RootNamespace="gtk3prebuild"
|
RootNamespace="gtk4prebuild"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
TargetFrameworkVersion="131072"
|
TargetFrameworkVersion="131072"
|
||||||
>
|
>
|
||||||
@ -22,7 +22,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
>
|
>
|
||||||
@ -30,7 +30,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|x64"
|
Name="Debug|x64"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
>
|
>
|
||||||
@ -39,7 +39,7 @@
|
|||||||
Name="Debug_Broadway|Win32"
|
Name="Debug_Broadway|Win32"
|
||||||
IntermediateDirectory="$(ConfigurationName)"
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
>
|
>
|
||||||
@ -47,7 +47,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug_Broadway|x64"
|
Name="Debug_Broadway|x64"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
>
|
>
|
||||||
@ -56,7 +56,7 @@
|
|||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
IntermediateDirectory="$(ConfigurationName)"
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -65,7 +65,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|x64"
|
Name="Release|x64"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -75,7 +75,7 @@
|
|||||||
Name="Release_Broadway|Win32"
|
Name="Release_Broadway|Win32"
|
||||||
IntermediateDirectory="$(ConfigurationName)"
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
||||||
@ -84,7 +84,7 @@
|
|||||||
<Configuration
|
<Configuration
|
||||||
Name="Release_Broadway|x64"
|
Name="Release_Broadway|x64"
|
||||||
ConfigurationType="10"
|
ConfigurationType="10"
|
||||||
InheritedPropertySheets=".\gtk3-gen-srcs.vsprops"
|
InheritedPropertySheets=".\gtk4-gen-srcs.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
DeleteExtensionsOnClean=""
|
DeleteExtensionsOnClean=""
|
||||||
WholeProgramOptimization="1"
|
WholeProgramOptimization="1"
|
@ -2,7 +2,7 @@
|
|||||||
<VisualStudioPropertySheet
|
<VisualStudioPropertySheet
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="8.00"
|
Version="8.00"
|
||||||
Name="gtk3versionpathsprops"
|
Name="gtk4versionpathsprops"
|
||||||
>
|
>
|
||||||
<UserMacro
|
<UserMacro
|
||||||
Name="VSVer"
|
Name="VSVer"
|
||||||
@ -18,7 +18,7 @@
|
|||||||
/>
|
/>
|
||||||
<UserMacro
|
<UserMacro
|
||||||
Name="ApiVersion"
|
Name="ApiVersion"
|
||||||
Value="3.0"
|
Value="4.0"
|
||||||
/>
|
/>
|
||||||
<UserMacro
|
<UserMacro
|
||||||
Name="GtkVersion"
|
Name="GtkVersion"
|
@ -1994,9 +1994,9 @@ docs/tools/Makefile
|
|||||||
build/Makefile
|
build/Makefile
|
||||||
build/win32/Makefile
|
build/win32/Makefile
|
||||||
build/win32/vs9/Makefile
|
build/win32/vs9/Makefile
|
||||||
build/win32/vs9/gtk3-version-paths.vsprops
|
build/win32/vs9/gtk4-version-paths.vsprops
|
||||||
build/win32/vs10/Makefile
|
build/win32/vs10/Makefile
|
||||||
build/win32/vs10/gtk3-version-paths.props
|
build/win32/vs10/gtk4-version-paths.props
|
||||||
build/win32/vs11/Makefile
|
build/win32/vs11/Makefile
|
||||||
build/win32/vs12/Makefile
|
build/win32/vs12/Makefile
|
||||||
build/win32/vs14/Makefile
|
build/win32/vs14/Makefile
|
||||||
@ -2015,7 +2015,7 @@ gtk/Makefile
|
|||||||
gtk/makefile.msc
|
gtk/makefile.msc
|
||||||
gtk/gtkversion.h
|
gtk/gtkversion.h
|
||||||
gtk/gtk-win32.rc.body
|
gtk/gtk-win32.rc.body
|
||||||
gtk/libgtk3.manifest
|
gtk/libgtk4.manifest
|
||||||
modules/Makefile
|
modules/Makefile
|
||||||
modules/input/Makefile
|
modules/input/Makefile
|
||||||
modules/printbackends/Makefile
|
modules/printbackends/Makefile
|
||||||
|
@ -197,7 +197,7 @@ include $(top_srcdir)/build/Makefile.msvcproj
|
|||||||
|
|
||||||
dist-hook: \
|
dist-hook: \
|
||||||
$(top_builddir)/build/win32/vs9/gtk4-demo.vcproj \
|
$(top_builddir)/build/win32/vs9/gtk4-demo.vcproj \
|
||||||
$(top_builddir)/build/win42/vs9/gtk4-demo-application.vcproj
|
$(top_builddir)/build/win32/vs9/gtk4-demo-application.vcproj
|
||||||
|
|
||||||
DISTCLEANFILES = demos.h demos.h.win32
|
DISTCLEANFILES = demos.h demos.h.win32
|
||||||
|
|
||||||
|
@ -547,8 +547,8 @@ INTROSPECTION_INTERMEDIATE_ITEMS =
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
dist-hook: \
|
dist-hook: \
|
||||||
$(top_builddir)/build/win32/vs9/gdk-3.vcproj \
|
$(top_builddir)/build/win32/vs9/gdk-4.vcproj \
|
||||||
$(top_builddir)/build/win32/vs9/gdk-3.headers \
|
$(top_builddir)/build/win32/vs9/gdk-4.headers \
|
||||||
$(INTROSPECTION_INTERMEDIATE_ITEMS)
|
$(INTROSPECTION_INTERMEDIATE_ITEMS)
|
||||||
|
|
||||||
DISTCLEANFILES = gdkconfig.h stamp-gc-h
|
DISTCLEANFILES = gdkconfig.h stamp-gc-h
|
||||||
|
@ -108,15 +108,15 @@ EXTRA_DIST += $(broadway_built_sources)
|
|||||||
BUILT_SOURCES = $(broadway_built_sources)
|
BUILT_SOURCES = $(broadway_built_sources)
|
||||||
|
|
||||||
# ------------------- MSVC Build Items ----------------
|
# ------------------- MSVC Build Items ----------------
|
||||||
MSVCPROJS = gdk3-broadway broadwayd
|
MSVCPROJS = gdk4-broadway broadwayd
|
||||||
|
|
||||||
gdk3_broadway_FILES = $(libgdk_broadway_la_SOURCES)
|
gdk4_broadway_FILES = $(libgdk_broadway_la_SOURCES)
|
||||||
gdk3_broadway_EXCLUDES = dummy
|
gdk4_broadway_EXCLUDES = dummy
|
||||||
gdk3_broadway_HEADERS_DIR = $(libgdkbroadwayincludedir)
|
gdk4_broadway_HEADERS_DIR = $(libgdkbroadwayincludedir)
|
||||||
|
|
||||||
gdk3_broadway_HEADERS_INST = $(libgdkbroadwayinclude_HEADERS)
|
gdk4_broadway_HEADERS_INST = $(libgdkbroadwayinclude_HEADERS)
|
||||||
|
|
||||||
gdk3_broadway_HEADERS_EXCLUDES = dummy
|
gdk4_broadway_HEADERS_EXCLUDES = dummy
|
||||||
|
|
||||||
broadwayd_FILES = $(broadwayd_SOURCES)
|
broadwayd_FILES = $(broadwayd_SOURCES)
|
||||||
broadwayd_EXCLUDES = dummy
|
broadwayd_EXCLUDES = dummy
|
||||||
@ -124,8 +124,8 @@ broadwayd_EXCLUDES = dummy
|
|||||||
include $(top_srcdir)/build/Makefile.msvcproj
|
include $(top_srcdir)/build/Makefile.msvcproj
|
||||||
|
|
||||||
dist-hook: \
|
dist-hook: \
|
||||||
$(top_builddir)/build/win32/vs9/gdk3-broadway.vcproj \
|
$(top_builddir)/build/win32/vs9/gdk4-broadway.vcproj \
|
||||||
$(top_builddir)/build/win32/vs9/broadwayd.vcproj \
|
$(top_builddir)/build/win32/vs9/broadwayd.vcproj \
|
||||||
$(top_builddir)/build/win32/vs9/gdk3-broadway.headers
|
$(top_builddir)/build/win32/vs9/gdk4-broadway.headers
|
||||||
|
|
||||||
-include $(top_srcdir)/git.mk
|
-include $(top_srcdir)/git.mk
|
||||||
|
@ -88,20 +88,20 @@ libgdkwin32include_HEADERS = \
|
|||||||
gdkwin32window.h
|
gdkwin32window.h
|
||||||
|
|
||||||
# ------------------- MSVC Build Items ----------------
|
# ------------------- MSVC Build Items ----------------
|
||||||
MSVCPROJS = gdk3-win32
|
MSVCPROJS = gdk4-win32
|
||||||
|
|
||||||
gdk3_win32_FILES = $(libgdk_win32_la_SOURCES)
|
gdk4_win32_FILES = $(libgdk_win32_la_SOURCES)
|
||||||
gdk3_win32_EXCLUDES = dummy
|
gdk4_win32_EXCLUDES = dummy
|
||||||
gdk3_win32_HEADERS_DIR = $(libgdkwin32includedir)
|
gdk4_win32_HEADERS_DIR = $(libgdkwin32includedir)
|
||||||
|
|
||||||
gdk3_win32_HEADERS_INST = $(libgdkwin32include_HEADERS)
|
gdk4_win32_HEADERS_INST = $(libgdkwin32include_HEADERS)
|
||||||
|
|
||||||
gdk3_win32_HEADERS_EXCLUDES = dummy
|
gdk4_win32_HEADERS_EXCLUDES = dummy
|
||||||
|
|
||||||
include $(top_srcdir)/build/Makefile.msvcproj
|
include $(top_srcdir)/build/Makefile.msvcproj
|
||||||
|
|
||||||
dist-hook: \
|
dist-hook: \
|
||||||
$(top_builddir)/build/win32/vs9/gdk3-win32.vcproj \
|
$(top_builddir)/build/win32/vs9/gdk4-win32.vcproj \
|
||||||
$(top_builddir)/build/win32/vs9/gdk3-win32.headers
|
$(top_builddir)/build/win32/vs9/gdk4-win32.headers
|
||||||
|
|
||||||
-include $(top_srcdir)/git.mk
|
-include $(top_srcdir)/git.mk
|
||||||
|
@ -43,13 +43,13 @@ gtk_win32_symbols = -export-symbols $(srcdir)/gtk.def
|
|||||||
gtk_win32_res = gtk-win32-res.o
|
gtk_win32_res = gtk-win32-res.o
|
||||||
gtk_win32_res_ldflag = -Wl,gtk-win32-res.o
|
gtk_win32_res_ldflag = -Wl,gtk-win32-res.o
|
||||||
|
|
||||||
gtk-win32-res.o : gtk-win32.rc libgtk3.manifest
|
gtk-win32-res.o : gtk-win32.rc libgtk4.manifest
|
||||||
$(WINDRES) gtk-win32.rc $@
|
$(WINDRES) gtk-win32.rc $@
|
||||||
|
|
||||||
gtk-win32.rc: gtk-win32.rc.body
|
gtk-win32.rc: gtk-win32.rc.body
|
||||||
echo "#include <winuser.h>" >>$@
|
echo "#include <winuser.h>" >>$@
|
||||||
cat $< >>$@
|
cat $< >>$@
|
||||||
echo "ISOLATIONAWARE_MANIFEST_RESOURCE_ID RT_MANIFEST libgtk3.manifest" >>$@
|
echo "ISOLATIONAWARE_MANIFEST_RESOURCE_ID RT_MANIFEST libgtk4.manifest" >>$@
|
||||||
|
|
||||||
gtk.def: libgtk-4.la
|
gtk.def: libgtk-4.la
|
||||||
echo "LIBRARY libgtk-$(GTK_MAJOR_VERSION)-@LT_CURRENT_MINUS_AGE@" >$@
|
echo "LIBRARY libgtk-$(GTK_MAJOR_VERSION)-@LT_CURRENT_MINUS_AGE@" >$@
|
||||||
@ -57,9 +57,9 @@ gtk.def: libgtk-4.la
|
|||||||
objdump -p .libs/libgtk-$(GTK_MAJOR_VERSION)-@LT_CURRENT_MINUS_AGE@.dll | sed -n -e 's/\t\[\s\+\([0-9]\+\)\]\s\([A-Za-z_][A-Za-z0-9_]\)/\2/p' >>$@
|
objdump -p .libs/libgtk-$(GTK_MAJOR_VERSION)-@LT_CURRENT_MINUS_AGE@.dll | sed -n -e 's/\t\[\s\+\([0-9]\+\)\]\s\([A-Za-z_][A-Za-z0-9_]\)/\2/p' >>$@
|
||||||
|
|
||||||
install-def-file: gtk.def
|
install-def-file: gtk.def
|
||||||
$(INSTALL) gtk.def $(DESTDIR)$(libdir)/gtk-win32-3.0.def
|
$(INSTALL) gtk.def $(DESTDIR)$(libdir)/gtk-win32-4.0.def
|
||||||
uninstall-def-file:
|
uninstall-def-file:
|
||||||
-rm $(DESTDIR)$(libdir)/gtk-win32-3.0.def
|
-rm $(DESTDIR)$(libdir)/gtk-win32-4.0.def
|
||||||
else
|
else
|
||||||
install-def-file:
|
install-def-file:
|
||||||
uninstall-def-file:
|
uninstall-def-file:
|
||||||
@ -68,7 +68,7 @@ endif
|
|||||||
if MS_LIB_AVAILABLE
|
if MS_LIB_AVAILABLE
|
||||||
noinst_DATA = gtk-win32-$(GTK_API_VERSION).lib
|
noinst_DATA = gtk-win32-$(GTK_API_VERSION).lib
|
||||||
|
|
||||||
gtk-win32-$(GTK_API_VERSION).lib: libgtk-3.la gtk.def
|
gtk-win32-$(GTK_API_VERSION).lib: libgtk-4.la gtk.def
|
||||||
lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgtk-win32-$(GTK_API_VERSION)-@LT_CURRENT_MINUS_AGE@.dll -def:gtk.def -out:$@
|
lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgtk-win32-$(GTK_API_VERSION)-@LT_CURRENT_MINUS_AGE@.dll -def:gtk.def -out:$@
|
||||||
|
|
||||||
install-ms-lib:
|
install-ms-lib:
|
||||||
@ -1115,7 +1115,6 @@ gtk_extra_sources = \
|
|||||||
paper_names.c \
|
paper_names.c \
|
||||||
paper_names_offsets.c \
|
paper_names_offsets.c \
|
||||||
gen-paper-names.c \
|
gen-paper-names.c \
|
||||||
deprecated/gtkstatusicon-quartz.c \
|
|
||||||
gtkversion.h.in \
|
gtkversion.h.in \
|
||||||
gtkmarshalers.list \
|
gtkmarshalers.list \
|
||||||
fallback-c89.c
|
fallback-c89.c
|
||||||
@ -1411,7 +1410,7 @@ uninstall-mac-key-theme:
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# ------------------- MSVC Build Items ----------------
|
# ------------------- MSVC Build Items ----------------
|
||||||
MSVCPROJS = gtk-3
|
MSVCPROJS = gtk-4
|
||||||
|
|
||||||
gtk_4_FILES = \
|
gtk_4_FILES = \
|
||||||
$(gtk_base_c_sources) \
|
$(gtk_base_c_sources) \
|
||||||
@ -1459,7 +1458,7 @@ GTK_MSVC_GIR_CFLAGS = \
|
|||||||
|
|
||||||
INTROSPECTION_INTERMEDIATE_ITEMS = \
|
INTROSPECTION_INTERMEDIATE_ITEMS = \
|
||||||
$(top_builddir)/build/win32/Gtk-4.0.gir.msvc.introspect \
|
$(top_builddir)/build/win32/Gtk-4.0.gir.msvc.introspect \
|
||||||
$(top_builddir)/build/win32/Gtk-4_0_gir_list
|
$(top_builddir)/build/win32/Gtk_4_0_gir_list
|
||||||
|
|
||||||
Gtk_4_0_gir_MSVC_FILES = \
|
Gtk_4_0_gir_MSVC_FILES = \
|
||||||
$(introspected_pub_headers) \
|
$(introspected_pub_headers) \
|
||||||
@ -1482,8 +1481,8 @@ INTROSPECTION_INTERMEDIATE_ITEMS =
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
dist-hook: \
|
dist-hook: \
|
||||||
$(top_builddir)/build/win32/vs9/gtk-3.vcproj \
|
$(top_builddir)/build/win32/vs9/gtk-4.vcproj \
|
||||||
$(top_builddir)/build/win32/vs9/gtk-3.headers \
|
$(top_builddir)/build/win32/vs9/gtk-4.headers \
|
||||||
$(INTROSPECTION_INTERMEDIATE_ITEMS)
|
$(INTROSPECTION_INTERMEDIATE_ITEMS)
|
||||||
|
|
||||||
# Install a RC file for the default GTK+ theme, and key themes
|
# Install a RC file for the default GTK+ theme, and key themes
|
||||||
@ -1660,7 +1659,7 @@ EXTRA_DIST += \
|
|||||||
a11y/Makefile.inc \
|
a11y/Makefile.inc \
|
||||||
deprecated/Makefile.inc \
|
deprecated/Makefile.inc \
|
||||||
inspector/Makefile.inc \
|
inspector/Makefile.inc \
|
||||||
libgtk3.manifest.in \
|
libgtk4.manifest.in \
|
||||||
gtk-win32.rc.body.in \
|
gtk-win32.rc.body.in \
|
||||||
gtk-win32.rc.body \
|
gtk-win32.rc.body \
|
||||||
gtkprint-win32.h \
|
gtkprint-win32.h \
|
||||||
|
Loading…
Reference in New Issue
Block a user