Updated visual studio project, now works
This commit is contained in:
parent
d44261f1f5
commit
e5c267b42e
31
winbuild/libmoo.rc
Normal file
31
winbuild/libmoo.rc
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
#include <windows.h>
|
||||||
|
#include <winver.h>
|
||||||
|
|
||||||
|
VS_VERSION_INFO VERSIONINFO
|
||||||
|
FILEVERSION 0,9,3,0
|
||||||
|
PRODUCTVERSION 0,9,3,0
|
||||||
|
FILEFLAGSMASK 0
|
||||||
|
FILEFLAGS 0
|
||||||
|
FILEOS VOS__WINDOWS32
|
||||||
|
FILETYPE VFT_DLL
|
||||||
|
FILESUBTYPE VFT2_UNKNOWN
|
||||||
|
BEGIN
|
||||||
|
BLOCK "StringFileInfo"
|
||||||
|
BEGIN
|
||||||
|
BLOCK "040904B0"
|
||||||
|
BEGIN
|
||||||
|
VALUE "CompanyName", "Yevgen Muntyan"
|
||||||
|
VALUE "FileDescription", "libmoo"
|
||||||
|
VALUE "FileVersion", "0.9.3.0"
|
||||||
|
VALUE "InternalName", "libmoo-0.9.3"
|
||||||
|
VALUE "LegalCopyright", "(C) 2004-2008 by Yevgen Muntyan <muntyan@math.tamu.edu>"
|
||||||
|
VALUE "OriginalFilename", "libmoo.dll"
|
||||||
|
VALUE "ProductName", "libmoo"
|
||||||
|
VALUE "ProductVersion", "0.9.3"
|
||||||
|
END
|
||||||
|
END
|
||||||
|
BLOCK "VarFileInfo"
|
||||||
|
BEGIN
|
||||||
|
VALUE "Translation", 0x409, 1200
|
||||||
|
END
|
||||||
|
END
|
32
winbuild/medit.rc
Normal file
32
winbuild/medit.rc
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
#include <windows.h>
|
||||||
|
|
||||||
|
A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "../../../moo/mooutils/pixmaps/medit.ico"
|
||||||
|
|
||||||
|
VS_VERSION_INFO VERSIONINFO
|
||||||
|
FILEVERSION 0,9,3,0
|
||||||
|
PRODUCTVERSION 0,9,3,0
|
||||||
|
FILEFLAGSMASK 0
|
||||||
|
FILEFLAGS 0
|
||||||
|
FILEOS VOS__WINDOWS32
|
||||||
|
FILETYPE VFT_DLL
|
||||||
|
FILESUBTYPE VFT2_UNKNOWN
|
||||||
|
BEGIN
|
||||||
|
BLOCK "StringFileInfo"
|
||||||
|
BEGIN
|
||||||
|
BLOCK "040904B0"
|
||||||
|
BEGIN
|
||||||
|
VALUE "CompanyName", "Yevgen Muntyan"
|
||||||
|
VALUE "FileDescription", "medit text editor"
|
||||||
|
VALUE "FileVersion", "0.9.3.0"
|
||||||
|
VALUE "InternalName", "medit-0.9.3"
|
||||||
|
VALUE "LegalCopyright", "(C) 2004-2008 by Yevgen Muntyan <muntyan@math.tamu.edu>"
|
||||||
|
VALUE "OriginalFilename", "medit.exe"
|
||||||
|
VALUE "ProductName", "medit"
|
||||||
|
VALUE "ProductVersion", "0.9.3"
|
||||||
|
END
|
||||||
|
END
|
||||||
|
BLOCK "VarFileInfo"
|
||||||
|
BEGIN
|
||||||
|
VALUE "Translation", 0x409, 1200
|
||||||
|
END
|
||||||
|
END
|
@ -3,36 +3,37 @@ import os
|
|||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
glade_files = [
|
glade_files = [
|
||||||
'../../moo/mooutils/glade/mooaccelbutton.glade',
|
'../../../moo/mooutils/glade/mooaccelbutton.glade',
|
||||||
'../../moo/mooutils/glade/mooaccelprefs.glade',
|
'../../../moo/mooutils/glade/mooaccelprefs.glade',
|
||||||
'../../moo/mooutils/glade/moologwindow.glade',
|
'../../../moo/mooutils/glade/moologwindow.glade',
|
||||||
'../../moo/mooapp/glade/mooappabout.glade',
|
'../../../moo/mooapp/glade/mooappabout.glade',
|
||||||
'../../moo/mooedit/glade/mooeditprefs-file.glade',
|
'../../../moo/mooedit/glade/mooeditprefs-file.glade',
|
||||||
'../../moo/mooedit/glade/mooeditprefs-general.glade',
|
'../../../moo/mooedit/glade/mooeditprefs-general.glade',
|
||||||
'../../moo/mooedit/glade/mooeditprefs-langs.glade',
|
'../../../moo/mooedit/glade/mooeditprefs-langs.glade',
|
||||||
'../../moo/mooedit/glade/mooeditprefs-view.glade',
|
'../../../moo/mooedit/glade/mooeditprefs-view.glade',
|
||||||
'../../moo/mooedit/glade/mooeditprogress.glade',
|
'../../../moo/mooedit/glade/mooeditprogress.glade',
|
||||||
'../../moo/mooedit/glade/mooeditsavemult.glade',
|
'../../../moo/mooedit/glade/mooeditsavemult.glade',
|
||||||
'../../moo/mooedit/glade/mooedittools.glade',
|
'../../../moo/mooedit/glade/mooedittools.glade',
|
||||||
'../../moo/mooedit/glade/moopluginprefs.glade',
|
'../../../moo/mooedit/glade/moopluginprefs.glade',
|
||||||
'../../moo/mooedit/glade/mooprint.glade',
|
'../../../moo/mooedit/glade/mooprint.glade',
|
||||||
'../../moo/mooedit/glade/mooprintpreview.glade',
|
'../../../moo/mooedit/glade/mooprintpreview.glade',
|
||||||
'../../moo/mooedit/glade/mootextfind.glade',
|
'../../../moo/mooedit/glade/mootextfind.glade',
|
||||||
'../../moo/mooedit/glade/mootextgotoline.glade',
|
'../../../moo/mooedit/glade/mootextgotoline.glade',
|
||||||
'../../moo/mooedit/glade/quicksearch.glade',
|
'../../../moo/mooedit/glade/mooquicksearch.glade',
|
||||||
'../../moo/mooedit/glade/statusbar.glade',
|
'../../../moo/mooedit/glade/moostatusbar.glade',
|
||||||
'../../moo/mooedit/plugins/moofileselector.glade',
|
'../../../moo/mooedit/plugins/moofileselector.glade',
|
||||||
'../../moo/mooedit/plugins/moofileselector-prefs.glade',
|
'../../../moo/mooedit/plugins/moofileselector-prefs.glade',
|
||||||
'../../moo/moofileview/glade/moobookmark-editor.glade',
|
'../../../moo/mooedit/plugins/moofind.glade',
|
||||||
'../../moo/moofileview/glade/moocreatefolder.glade',
|
'../../../moo/moofileview/glade/moobookmark-editor.glade',
|
||||||
'../../moo/moofileview/glade/moofileprops.glade',
|
'../../../moo/moofileview/glade/moocreatefolder.glade',
|
||||||
'../../moo/moofileview/glade/moofileview-drop.glade',
|
'../../../moo/moofileview/glade/moofileprops.glade',
|
||||||
|
'../../../moo/moofileview/glade/moofileview-drop.glade',
|
||||||
]
|
]
|
||||||
|
|
||||||
ui_files = [
|
ui_files = [
|
||||||
'../../moo/mooedit/medit-ui.xml',
|
'../../../moo/mooedit/medit-ui.xml',
|
||||||
'../../moo/mooedit/mooedit-ui.xml',
|
'../../../moo/mooedit/mooedit-ui.xml',
|
||||||
'../../moo/moofileview/moofileview-ui.xml',
|
'../../../moo/moofileview/moofileview-ui.xml',
|
||||||
]
|
]
|
||||||
|
|
||||||
indir = sys.argv[1]
|
indir = sys.argv[1]
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,84 +0,0 @@
|
|||||||
// Microsoft Visual C++ generated resource script.
|
|
||||||
//
|
|
||||||
#include "resource.h"
|
|
||||||
|
|
||||||
#define APSTUDIO_READONLY_SYMBOLS
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
//
|
|
||||||
// Generated from the TEXTINCLUDE 2 resource.
|
|
||||||
//
|
|
||||||
#include "afxres.h"
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
#undef APSTUDIO_READONLY_SYMBOLS
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Neutral resources
|
|
||||||
|
|
||||||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU)
|
|
||||||
#ifdef _WIN32
|
|
||||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
||||||
#pragma code_page(1252)
|
|
||||||
#endif //_WIN32
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
//
|
|
||||||
// Icon
|
|
||||||
//
|
|
||||||
|
|
||||||
// Icon with lowest ID value placed first to ensure application icon
|
|
||||||
// remains consistent on all systems.
|
|
||||||
IDI_MEDIT ICON "..\\..\\moo\\mooutils\\pixmaps\\medit.ico"
|
|
||||||
#endif // Neutral resources
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// German (Germany) resources
|
|
||||||
|
|
||||||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU)
|
|
||||||
#ifdef _WIN32
|
|
||||||
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN
|
|
||||||
#pragma code_page(1252)
|
|
||||||
#endif //_WIN32
|
|
||||||
|
|
||||||
#ifdef APSTUDIO_INVOKED
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
//
|
|
||||||
// TEXTINCLUDE
|
|
||||||
//
|
|
||||||
|
|
||||||
1 TEXTINCLUDE
|
|
||||||
BEGIN
|
|
||||||
"resource.h\0"
|
|
||||||
END
|
|
||||||
|
|
||||||
2 TEXTINCLUDE
|
|
||||||
BEGIN
|
|
||||||
"#include ""afxres.h""\r\n"
|
|
||||||
"\0"
|
|
||||||
END
|
|
||||||
|
|
||||||
3 TEXTINCLUDE
|
|
||||||
BEGIN
|
|
||||||
"\r\n"
|
|
||||||
"\0"
|
|
||||||
END
|
|
||||||
|
|
||||||
#endif // APSTUDIO_INVOKED
|
|
||||||
|
|
||||||
#endif // German (Germany) resources
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef APSTUDIO_INVOKED
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
//
|
|
||||||
// Generated from the TEXTINCLUDE 3 resource.
|
|
||||||
//
|
|
||||||
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
#endif // not APSTUDIO_INVOKED
|
|
||||||
|
|
@ -1,28 +0,0 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
|
||||||
# Visual Studio 2005
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "medit", "medit.vcproj", "{7BD3D0DE-F0ED-40A7-B817-6BF4775FC991}"
|
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
|
||||||
{03EBF0AA-9D4A-422D-ADF1-98254BE47975} = {03EBF0AA-9D4A-422D-ADF1-98254BE47975}
|
|
||||||
EndProjectSection
|
|
||||||
EndProject
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libmoo", "libmoo\libmoo.vcproj", "{03EBF0AA-9D4A-422D-ADF1-98254BE47975}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Win32 = Debug|Win32
|
|
||||||
Release|Win32 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{7BD3D0DE-F0ED-40A7-B817-6BF4775FC991}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{7BD3D0DE-F0ED-40A7-B817-6BF4775FC991}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{7BD3D0DE-F0ED-40A7-B817-6BF4775FC991}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{7BD3D0DE-F0ED-40A7-B817-6BF4775FC991}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{03EBF0AA-9D4A-422D-ADF1-98254BE47975}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{03EBF0AA-9D4A-422D-ADF1-98254BE47975}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{03EBF0AA-9D4A-422D-ADF1-98254BE47975}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{03EBF0AA-9D4A-422D-ADF1-98254BE47975}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
@ -1,239 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
|
||||||
<VisualStudioProject
|
|
||||||
ProjectType="Visual C++"
|
|
||||||
Version="8.00"
|
|
||||||
Name="medit"
|
|
||||||
ProjectGUID="{7BD3D0DE-F0ED-40A7-B817-6BF4775FC991}"
|
|
||||||
RootNamespace="medit"
|
|
||||||
Keyword="Win32Proj"
|
|
||||||
>
|
|
||||||
<Platforms>
|
|
||||||
<Platform
|
|
||||||
Name="Win32"
|
|
||||||
/>
|
|
||||||
</Platforms>
|
|
||||||
<ToolFiles>
|
|
||||||
</ToolFiles>
|
|
||||||
<Configurations>
|
|
||||||
<Configuration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
OutputDirectory="c:\temp\muntyan\medit\$(ConfigurationName)"
|
|
||||||
IntermediateDirectory="c:\temp\muntyan\medit\$(ConfigurationName)\build"
|
|
||||||
ConfigurationType="1"
|
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
|
||||||
CharacterSet="2"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"
|
|
||||||
CommandLine=""
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
CommandLine=""
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
AdditionalOptions="/wd4054 /wd4152 /wd4311 /wd4312 /wd4244 /wd4100 /wd4125 /wd4996"
|
|
||||||
Optimization="0"
|
|
||||||
AdditionalIncludeDirectories="..;..\..\moo;..\..\moo\mooedit;..\..\moo\mooutils\xdgmime\win32;..\..\moo\moolua;..\..\doc;..\..\moo\mooutils;mingw;$(OutDir)"
|
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__WIN32__;HAVE_CONFIG_H;__MOO__;G_LOG_DOMAIN=\"Moo\";_CRT_SECURE_NO_WARNINGS"
|
|
||||||
MinimalRebuild="true"
|
|
||||||
BasicRuntimeChecks="3"
|
|
||||||
RuntimeLibrary="1"
|
|
||||||
UsePrecompiledHeader="0"
|
|
||||||
WarningLevel="1"
|
|
||||||
Detect64BitPortabilityProblems="false"
|
|
||||||
DebugInformationFormat="4"
|
|
||||||
CompileAs="1"
|
|
||||||
DisableSpecificWarnings="4127"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedResourceCompilerTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalDependencies="glib-2.0.lib gobject-2.0.lib gthread-2.0.lib intl.lib gdk-win32-2.0.lib gtk-win32-2.0.lib"
|
|
||||||
OutputFile="c:\temp\muntyan\gtk\bin\medit.exe"
|
|
||||||
Version="0.9.3"
|
|
||||||
LinkIncremental="2"
|
|
||||||
GenerateDebugInformation="true"
|
|
||||||
ProgramDatabaseFile="$(OutDir)/medit.pdb"
|
|
||||||
SubSystem="2"
|
|
||||||
TargetMachine="1"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCALinkTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManifestTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXDCMakeTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCBscMakeTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCFxCopTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAppVerifierTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebDeploymentTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"
|
|
||||||
/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="Release|Win32"
|
|
||||||
OutputDirectory="c:\temp\muntyan\medit\$(ConfigurationName)"
|
|
||||||
IntermediateDirectory="c:\temp\muntyan\medit\$(ConfigurationName)\build"
|
|
||||||
ConfigurationType="1"
|
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
|
||||||
CharacterSet="2"
|
|
||||||
WholeProgramOptimization="1"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"
|
|
||||||
CommandLine="python glade2h.py $(InputDir) $(OutDir)"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
AdditionalOptions="/wd4054 /wd4152 /wd4311 /wd4312 /wd4244 /wd4100 /wd4125 /wd4996"
|
|
||||||
Optimization="1"
|
|
||||||
InlineFunctionExpansion="0"
|
|
||||||
FavorSizeOrSpeed="2"
|
|
||||||
AdditionalIncludeDirectories="..;..\..\moo;..\..\moo\mooedit;..\..\moo\mooutils\xdgmime\win32;..\..\moo\moolua;..\..\doc;..\..\moo\mooutils;mingw;$(OutDir)"
|
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__WIN32__;HAVE_CONFIG_H;__MOO__;G_LOG_DOMAIN=\"Moo\";_CRT_SECURE_NO_WARNINGS"
|
|
||||||
RuntimeLibrary="0"
|
|
||||||
UsePrecompiledHeader="0"
|
|
||||||
WarningLevel="4"
|
|
||||||
Detect64BitPortabilityProblems="false"
|
|
||||||
DebugInformationFormat="3"
|
|
||||||
DisableSpecificWarnings="4127;4054;4100;4201;4098;4101;4152"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedResourceCompilerTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalDependencies="glib-2.0.lib gobject-2.0.lib gthread-2.0.lib intl.lib gdk-win32-2.0.lib gtk-win32-2.0.lib"
|
|
||||||
OutputFile="c:\temp\muntyan\gtk\bin\medit.exe"
|
|
||||||
Version="0.6.999"
|
|
||||||
LinkIncremental="1"
|
|
||||||
GenerateDebugInformation="true"
|
|
||||||
SubSystem="2"
|
|
||||||
OptimizeReferences="2"
|
|
||||||
EnableCOMDATFolding="2"
|
|
||||||
OptimizeForWindows98="1"
|
|
||||||
TargetMachine="1"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCALinkTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManifestTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXDCMakeTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCBscMakeTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCFxCopTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAppVerifierTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebDeploymentTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"
|
|
||||||
/>
|
|
||||||
</Configuration>
|
|
||||||
</Configurations>
|
|
||||||
<References>
|
|
||||||
</References>
|
|
||||||
<Files>
|
|
||||||
<Filter
|
|
||||||
Name="Source"
|
|
||||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
|
||||||
>
|
|
||||||
<File
|
|
||||||
RelativePath="..\config.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<Filter
|
|
||||||
Name="medit"
|
|
||||||
>
|
|
||||||
<File
|
|
||||||
RelativePath="..\..\medit\medit-app.c"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\..\medit\mem-debug.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
</Filter>
|
|
||||||
</Filter>
|
|
||||||
<Filter
|
|
||||||
Name="Resource Files"
|
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
|
||||||
>
|
|
||||||
<File
|
|
||||||
RelativePath="..\..\moo\mooutils\pixmaps\medit.ico"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\medit.rc"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
</Filter>
|
|
||||||
<File
|
|
||||||
RelativePath=".\resource.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
</Files>
|
|
||||||
<Globals>
|
|
||||||
</Globals>
|
|
||||||
</VisualStudioProject>
|
|
30
winbuild/ms/medit/medit.sln
Normal file
30
winbuild/ms/medit/medit.sln
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "medit", "medit.vcproj", "{F3555C85-FA2D-43B1-8C8F-A12D16215AE8}"
|
||||||
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
|
{7A1C6F18-C90A-4B6E-AB53-E5436FC46F80} = {7A1C6F18-C90A-4B6E-AB53-E5436FC46F80}
|
||||||
|
EndProjectSection
|
||||||
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libmoo", "..\libmoo\libmoo.vcproj", "{7A1C6F18-C90A-4B6E-AB53-E5436FC46F80}"
|
||||||
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
|
EndProjectSection
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfiguration) = preSolution
|
||||||
|
Debug = Debug
|
||||||
|
Release = Release
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfiguration) = postSolution
|
||||||
|
{F3555C85-FA2D-43B1-8C8F-A12D16215AE8}.Debug.ActiveCfg = Debug|Win32
|
||||||
|
{F3555C85-FA2D-43B1-8C8F-A12D16215AE8}.Debug.Build.0 = Debug|Win32
|
||||||
|
{F3555C85-FA2D-43B1-8C8F-A12D16215AE8}.Release.ActiveCfg = Release|Win32
|
||||||
|
{F3555C85-FA2D-43B1-8C8F-A12D16215AE8}.Release.Build.0 = Release|Win32
|
||||||
|
{7A1C6F18-C90A-4B6E-AB53-E5436FC46F80}.Debug.ActiveCfg = Debug|Win32
|
||||||
|
{7A1C6F18-C90A-4B6E-AB53-E5436FC46F80}.Debug.Build.0 = Debug|Win32
|
||||||
|
{7A1C6F18-C90A-4B6E-AB53-E5436FC46F80}.Release.ActiveCfg = Release|Win32
|
||||||
|
{7A1C6F18-C90A-4B6E-AB53-E5436FC46F80}.Release.Build.0 = Release|Win32
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityAddIns) = postSolution
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
156
winbuild/ms/medit/medit.vcproj
Normal file
156
winbuild/ms/medit/medit.vcproj
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="7.10"
|
||||||
|
Name="medit"
|
||||||
|
ProjectGUID="{F3555C85-FA2D-43B1-8C8F-A12D16215AE8}"
|
||||||
|
RootNamespace="medit"
|
||||||
|
Keyword="Win32Proj">
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"/>
|
||||||
|
</Platforms>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="c:\temp\muntyan\gtk\bin"
|
||||||
|
IntermediateDirectory="c:\temp\muntyan\medit\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="2">
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
AdditionalIncludeDirectories="..\..\..\moo;..\.."
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__WIN32__;HAVE_CONFIG_H;G_LOG_DOMAIN=\"Moo\";_CRT_SECURE_NO_WARNINGS"
|
||||||
|
MinimalRebuild="TRUE"
|
||||||
|
BasicRuntimeChecks="0"
|
||||||
|
RuntimeLibrary="2"
|
||||||
|
ForceConformanceInForLoopScope="TRUE"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
CompileAs="1"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="gdk-win32-2.0.lib glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gtk-win32-2.0.lib intl.lib"
|
||||||
|
OutputFile="$(OutDir)/medit.exe"
|
||||||
|
LinkIncremental="2"
|
||||||
|
GenerateDebugInformation="TRUE"
|
||||||
|
ProgramDatabaseFile="$(OutDir)/medit.pdb"
|
||||||
|
SubSystem="2"
|
||||||
|
TargetMachine="1"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="c:\temp\muntyan\gtk\bin"
|
||||||
|
IntermediateDirectory="c:\temp\muntyan\medit\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="2">
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="..\..\..\moo;..\.."
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;__WIN32__;HAVE_CONFIG_H;G_LOG_DOMAIN=\"Moo\";_CRT_SECURE_NO_WARNINGS"
|
||||||
|
RuntimeLibrary="2"
|
||||||
|
ForceConformanceInForLoopScope="TRUE"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="TRUE"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
CompileAs="1"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="gdk-win32-2.0.lib glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gtk-win32-2.0.lib intl.lib"
|
||||||
|
OutputFile="$(OutDir)/medit.exe"
|
||||||
|
LinkIncremental="1"
|
||||||
|
GenerateDebugInformation="TRUE"
|
||||||
|
SubSystem="2"
|
||||||
|
OptimizeReferences="2"
|
||||||
|
EnableCOMDATFolding="2"
|
||||||
|
TargetMachine="1"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedWrapperGeneratorTool"/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\..\medit\medit-app.c">
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\config.h">
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\..\medit\medit-credits.h">
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\..\medit\mem-debug.h">
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\moo-config.h">
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Resource Files"
|
||||||
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\medit.rc">
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
@ -1,17 +0,0 @@
|
|||||||
//{{NO_DEPENDENCIES}}
|
|
||||||
// Microsoft Visual C++ generated include file.
|
|
||||||
// Used by medit.rc
|
|
||||||
//
|
|
||||||
#define IDI_MEDIT 101
|
|
||||||
|
|
||||||
// Next default values for new objects
|
|
||||||
//
|
|
||||||
#ifdef APSTUDIO_INVOKED
|
|
||||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
|
||||||
#define _APS_NEXT_RESOURCE_VALUE 102
|
|
||||||
#define _APS_NEXT_COMMAND_VALUE 40001
|
|
||||||
#define _APS_NEXT_CONTROL_VALUE 1001
|
|
||||||
#define _APS_NEXT_SYMED_VALUE 101
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user