This commit is contained in:
Aaron Bockover 2010-11-09 23:18:04 -05:00
Родитель d1238e3da7
Коммит c19f86997e
4 изменённых файлов: 41 добавлений и 10 удалений

Просмотреть файл

@ -38,7 +38,6 @@
<Compile Include="Cairo\ContextExtensions.cs" />
<Compile Include="Cairo\RectangleExtensions.cs" />
<Compile Include="Maigre.Osx\OsxTheme.cs" />
<Compile Include="Maigre\Theme_Template.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
@ -50,6 +49,21 @@
<Reference Include="atk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
</ItemGroup>
<ItemGroup>
<None Include="gtkrc" />
<None Include="Maigre\Theme_Template.cs" />
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>
<Properties>
<MonoDevelop.Autotools.MakefileInfo IntegrationEnabled="true" RelativeMakefileName="Makefile.am" IsAutotoolsProject="true" RelativeConfigureInPath="..">
<BuildFilesVar Sync="true" Name="MAIGRE_SOURCES" />
<DeployFilesVar />
<ResourcesVar />
<OthersVar Sync="true" Name="MAIGRE_TEMPLATE_SOURCES_IN" />
<GacRefVar />
<AsmRefVar />
<ProjectRefVar />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>

Просмотреть файл

@ -1,12 +1,11 @@
MAIGRE_SOURCES = \
MAIGRE_SOURCES = \
Cairo/ColorExtensions.cs \
Cairo/ContextExtensions.cs \
Cairo/Corner.cs \
Cairo/RectangleExtensions.cs \
Maigre.Osx/OsxTheme.cs
MAIGRE_TEMPLATE_SOURCES_IN = \
Maigre/Theme_Template.cs
MAIGRE_TEMPLATE_SOURCES_IN = Maigre/Theme_Template.cs
MAIGRE_TEMPLATE_SOURCES_OUT = \
Maigre_Theme.cs

Просмотреть файл

@ -7,13 +7,16 @@ INCLUDES = \
$(MONO_CFLAGS) \
$(GTK_CFLAGS)
MAIGRE_SRC = \
MAIGRE_SRC = \
maigre-mono-bridge.c \
maigre-mono-bridge.h \
maigre-rc-style.c \
maigre-theme-module.c
MAIGRE_OTHER = \
maigre-mono-bridge.h \
maigre-rc-style.h \
maigre-style.h \
maigre-theme-module.c
maigre-style.template.c
enginedir = $(libdir)/gtk-2.0/$(GTK_VERSION)/engines
engine_LTLIBRARIES = libmaigre.la

Просмотреть файл

@ -35,12 +35,27 @@
<ItemGroup>
<Compile Include="maigre-rc-style.c" />
<Compile Include="maigre-theme-module.c" />
<Compile Include="maigre-style.c" />
<Compile Include="maigre-mono-bridge.c" />
</ItemGroup>
<ItemGroup>
<None Include="maigre-rc-style.h" />
<None Include="maigre-style.template.c" />
<None Include="maigre-style.h" />
<None Include="maigre-rc-style.h" />
<None Include="maigre-mono-bridge.h" />
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>
<Properties>
<MonoDevelop.Autotools.MakefileInfo IntegrationEnabled="true" RelativeMakefileName="Makefile.am" IsAutotoolsProject="true" RelativeConfigureInPath="..">
<BuildFilesVar Sync="true" Name="MAIGRE_SRC" />
<DeployFilesVar />
<ResourcesVar />
<OthersVar Sync="true" Name="MAIGRE_OTHER" />
<GacRefVar />
<AsmRefVar />
<ProjectRefVar />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>