mirror of https://github.com/buggins/dlangui.git
Update readme. Remove project files
This commit is contained in:
parent
5d742a2076
commit
1056a96e7c
240
README.md
240
README.md
|
@ -1,7 +1,6 @@
|
|||
Dlang UI
|
||||
========
|
||||
|
||||
[](https://gitter.im/buggins/dlangui?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [](https://travis-ci.org/buggins/dlangui) [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KPSNU8TYF6M5N "Donate once-off to this project using Paypal")
|
||||
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KPSNU8TYF6M5N "Donate once-off to this project using Paypal")
|
||||
|
||||
Cross platform GUI for D. Widgets, layouts, styles, themes, unicode, i18n, OpenGL based acceleration.
|
||||
|
||||
|
@ -22,15 +21,6 @@ Screenshots: [http://buggins.github.io/dlangui/screenshots.html](http://buggins.
|
|||
|
||||
Coding style: [https://github.com/buggins/dlangui/blob/master/CODING_STYLE.md](https://github.com/buggins/dlangui/blob/master/CODING_STYLE.md)
|
||||
|
||||
|
||||
*BeamUI* - actual fork of DlangUI - in active development : [https://github.com/dayllenger/beamui](https://github.com/dayllenger/beamui)
|
||||
|
||||
|
||||
|
||||
|
||||
WARNING: dependencies in dlangui/deps now are git submodules (if you previously cloned them into deps directory, remove deps dir before updating dlangui project)
|
||||
|
||||
|
||||
Main features:
|
||||
|
||||
* Crossplatform (Win32, OSX, Linux and Android are supported in current version)
|
||||
|
@ -46,8 +36,7 @@ Main features:
|
|||
D compiler versions supported
|
||||
-----------------------------
|
||||
|
||||
Needs DMD frontend 2.077 or newer to build
|
||||
|
||||
Needs DMD frontend 2.100.2 or newer to build
|
||||
|
||||
Widgets
|
||||
-------
|
||||
|
@ -150,7 +139,7 @@ Win32 builds
|
|||
------------
|
||||
|
||||
* Under windows, uses SDL2 or Win32 API as backend.
|
||||
* Optionally, may use OpenGL acceleration via DerelictGL3/WGL.
|
||||
* Optionally, may use OpenGL acceleration
|
||||
* Uses Win32 API for font rendering.
|
||||
* Optinally can use FreeType for font rendering.
|
||||
* Executable size for release Win32 API based build is 830K.
|
||||
|
@ -162,9 +151,6 @@ git clone --recursive https://github.com/buggins/dlangui.git
|
|||
cd dlangui/examples/example1
|
||||
dub run --build=release
|
||||
```
|
||||
To develop using Visual-D or MonoD, open dlangui.sln using Visual D (or dlangui-monod.sln for MonoD)
|
||||
|
||||
|
||||
|
||||
To avoid showing console window add win_app.def file to your package source directory and add line to your dub.json.
|
||||
|
||||
|
@ -177,220 +163,13 @@ dub.json:
|
|||
"sourceFiles-windows": ["$PACKAGE_DIR/src/win_app.def"],
|
||||
```
|
||||
|
||||
Mac OSX development using Mono-D
|
||||
--------------------------------
|
||||
|
||||
DMD, DUB, git, MonoDevelop with Mono-D plugin must be installed
|
||||
|
||||
Can use SDL2 or X11 as a backend.
|
||||
|
||||
Native Cocoa backend - work is in progress.
|
||||
|
||||
In some directory, e.g. ~/src/d/ :
|
||||
|
||||
Clone DlangUI repository
|
||||
```sh
|
||||
git clone --recursive https://github.com/buggins/dlangui.git
|
||||
```
|
||||
Enter dlangui directory
|
||||
```sh
|
||||
cd dlangui
|
||||
```
|
||||
Open solution file with Mono-D
|
||||
```
|
||||
dlangui-monod-osx.sln
|
||||
```
|
||||
|
||||
|
||||
Linux development using Mono-D
|
||||
------------------------------
|
||||
|
||||
Install DUB, DMD, MonoDevelop with Mono-D plugin.
|
||||
|
||||
Required libraries: libsdl2, x11, libfreetype, libfontconfig and OpenGL.
|
||||
|
||||
|
||||
Clone DlangUI repository
|
||||
```sh
|
||||
git clone https://github.com/buggins/dlangui.git
|
||||
```
|
||||
Enter dlangui directory
|
||||
```sh
|
||||
cd dlangui
|
||||
```
|
||||
Open solution file with Mono-D
|
||||
```
|
||||
dlangui-monod-linux.sln
|
||||
```
|
||||
Try running examples: helloworld, example1, tetris, dmledit, spreadsheet, opengl
|
||||
|
||||
Configurations Debug, Release, Unittest build SDL2+OpenGL versions of apps.
|
||||
|
||||
Configurations DebugMinimal, ReleaseMinimal, UnittestMinimal build pure SDL2 versions of apps.
|
||||
|
||||
|
||||
If you are creating your own solution / project which uses DlangUI in Mono-D:
|
||||
|
||||
* Create new solution (assuming that solution directory is located in the same directory as dlangui and "Create directory for solution" option is unchecked; if no - you will need to correct pathes)
|
||||
* Add / create source files of your project (e.g. copy+paste helloworld.d)
|
||||
* Add dlangui library project dlangui/dlangui-monod-linux.dproj to solution
|
||||
|
||||
Following settings are to be applied to all configurations of your new project (Debug, Release, Unittest):
|
||||
|
||||
* In your project options Build/Project Dependencies - mark dlangui-monod-linux item
|
||||
* In your project options Build/Compiling/Linking - check "Link in static/shared libraries from nested dependencies"
|
||||
* In your project options Build/Compiling/Compiling - specify Version constants as "USE_OPENGL;USE_SDL;USE_FREETYPE;EmbedStandardResources" (EmbedStandardResources is required if you want to embed your own additional resources into executable)
|
||||
* If your project needs to embed some resources into executable (usually from "views" directory), specify all directories which contain resources in Build/Compiling/Compiling/Extra Compiler Options, e.g.:
|
||||
|
||||
-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/hdpi
|
||||
|
||||
* In your project options Build/Includes put list of import directories of DlangUI library and its dependencies, like
|
||||
|
||||
../dlangui/src
|
||||
../dlangui/deps/DerelictSDL2/source
|
||||
../dlangui/deps/DerelictFT/source
|
||||
../dlangui/deps/DerelictGL3/source
|
||||
../dlangui/deps/DerelictUtil/source
|
||||
../dlangui/3rdparty
|
||||
|
||||
Now you can build and run your project.
|
||||
|
||||
To hack DlangIDE project, you can clone it from https://github.com/buggins/dlangide.git into the same directory dlangui is cloned to. Then just open solution dlangide/dlangide-monod-linux.sln with mono-d.
|
||||
|
||||
|
||||
Windows development using Mono-D
|
||||
--------------------------------
|
||||
|
||||
Install GIT, DUB, DMD, MonoDevelop with Mono-D plugin.
|
||||
|
||||
|
||||
Clone DlangUI repository
|
||||
```sh
|
||||
git clone https://github.com/buggins/dlangui.git
|
||||
```
|
||||
Enter dlangui directory
|
||||
```sh
|
||||
cd dlangui
|
||||
```
|
||||
Open solution file with Mono-D
|
||||
```
|
||||
dlangui-monod-windows.sln
|
||||
```
|
||||
Try running examples: helloworld, example1, tetris, dmledit, spreadsheet, opengl
|
||||
|
||||
Configurations Debug, Release, Unittest build SDL2+OpenGL versions of apps.
|
||||
|
||||
Configurations DebugMinimal, ReleaseMinimal, UnittestMinimal build pure win32 versions of apps w/o OpenGL.
|
||||
|
||||
|
||||
If you are creating your own solution / project which uses DlangUI in Mono-D:
|
||||
|
||||
* Create new solution (assuming that solution directory is located in the same directory as dlangui and "Create directory for solution" option is unchecked; if no - you will need to correct pathes)
|
||||
* Add / create source files of your project (e.g. copy+paste helloworld.d)
|
||||
* Add dlangui library project dlangui/dlangui-monod-linux.dproj to solution
|
||||
|
||||
Following settings are to be applied to all configurations of your new project (Debug, Release, Unittest):
|
||||
|
||||
* In your project options Build/Project Dependencies - mark dlangui-monod-linux item
|
||||
* In your project options Build/Compiling/Linking - check "Link in static/shared libraries from nested dependencies"
|
||||
* In your project options Build/Compiling/Compiling - specify Version constants as "USE_FREETYPE;USE_OPENGL;EmbedStandardResources;Unicode;windows" (EmbedStandardResources is required if you want to embed your own additional resources into executable)
|
||||
* If your project needs to embed some resources into executable (usually from "views" directory), specify all directories which contain resources in Build/Compiling/Compiling/Extra Compiler Options, e.g.:
|
||||
|
||||
-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/hdpi
|
||||
|
||||
* In your project options Build/Includes put list of import directories of DlangUI library and its dependencies, like
|
||||
|
||||
../dlangui/src
|
||||
../dlangui/3rdparty
|
||||
../dlangui/deps/DerelictSDL2/source
|
||||
../dlangui/deps/DerelictFT/source
|
||||
../dlangui/deps/DerelictGL3/source
|
||||
../dlangui/deps/DerelictUtil/source
|
||||
|
||||
Now you can build and run your project.
|
||||
|
||||
To hack DlangIDE project, you can clone it from https://github.com/buggins/dlangide.git into the same directory dlangui is cloned to. Then just open solution dlangide/dlangide-monod-linux.sln with mono-d.
|
||||
|
||||
|
||||
Windows development using VisualD
|
||||
---------------------------------
|
||||
|
||||
Install GIT, DUB, DMD, MS Visual Studio (e.g. Community 2013) + VisualD plugin
|
||||
|
||||
|
||||
Clone DlangUI repository
|
||||
```sh
|
||||
git clone --recursive https://github.com/buggins/dlangui.git
|
||||
```
|
||||
For DlangIDE development, close dlangide project on the same directory level as dlangui is cloned:
|
||||
```sh
|
||||
git clone --recursive https://github.com/buggins/dlangide.git
|
||||
```
|
||||
Enter dlangui directory
|
||||
```sh
|
||||
cd dlangui
|
||||
```
|
||||
Open solution file with Visual-D
|
||||
```
|
||||
dlangui-msvc.sln
|
||||
```
|
||||
Try running examples: helloworld, example1, tetris, dmledit, spreadsheet, opengl
|
||||
|
||||
Configurations Debug, Release, Unittest build SDL2+OpenGL versions of apps.
|
||||
|
||||
Configurations DebugMinimal, ReleaseMinimal, UnittestMinimal build pure win32 versions of apps w/o OpenGL.
|
||||
|
||||
|
||||
If you are creating your own solution / project which uses DlangUI in Mono-D:
|
||||
|
||||
* Create new solution (assuming that solution directory is located in the same directory as dlangui and "Create directory for solution" option is unchecked; if no - you will need to correct pathes)
|
||||
* Add / create source files of your project (e.g. copy+paste helloworld.d)
|
||||
* Add dlangui library project dlangui/dlangui-monod-linux.dproj to solution
|
||||
|
||||
Following settings are to be applied to all configurations of your new project (Debug, Release, Unittest):
|
||||
|
||||
* In your project options Build/Project Dependencies - mark dlangui-monod-linux item
|
||||
* In your project options Build/Compiling/Linking - check "Link in static/shared libraries from nested dependencies"
|
||||
* In your project options Build/Compiling/Compiling - specify Version constants as "USE_FREETYPE;USE_OPENGL;EmbedStandardResources;Unicode;windows" (EmbedStandardResources is required if you want to embed your own additional resources into executable)
|
||||
* If your project needs to embed some resources into executable (usually from "views" directory), specify all directories which contain resources in Build/Compiling/Compiling/Extra Compiler Options, e.g.:
|
||||
|
||||
-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/hdpi
|
||||
|
||||
* In your project options Build/Includes put list of import directories of DlangUI library and its dependencies, like
|
||||
|
||||
../dlangui/src
|
||||
../dlangui/deps/DerelictSDL2/source
|
||||
../dlangui/deps/DerelictFT/source
|
||||
../dlangui/deps/DerelictGL3/source
|
||||
../dlangui/deps/DerelictUtil/source
|
||||
|
||||
Now you can build and run your project.
|
||||
|
||||
To hack DlangIDE project, you can clone it from https://github.com/buggins/dlangide.git into the same directory dlangui is cloned to. Then just open solution dlangide/dlangide-monod-linux.sln with mono-d.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Linux builds (DUB)
|
||||
------------------
|
||||
|
||||
* Uses SDL2 as a backend.
|
||||
* Uses FreeType for font rendering.
|
||||
* Uses FontConfig to get list of available fonts.
|
||||
* OpenGL is can be optionally used for better drawing performance.
|
||||
* OpenGL can be optionally used for better drawing performance.
|
||||
|
||||
libsdl2, libfreetype, libfontconfig
|
||||
|
||||
|
@ -408,7 +187,10 @@ Build and run on Linux using DUB:
|
|||
cd examples/example1
|
||||
dub run dlangui:example1
|
||||
```
|
||||
|
||||
MacOS builds (DUB)
|
||||
------------------
|
||||
DlangUI theoretically supports MacOS, but I have no way of testing if it actually work.
|
||||
The support is **not guaranteed**.
|
||||
|
||||
Other platforms
|
||||
---------------
|
||||
|
@ -419,9 +201,9 @@ Other platforms
|
|||
Third party components used
|
||||
---------------------------
|
||||
|
||||
* DerelictGL3 - for OpenGL support
|
||||
* DerelictFT + FreeType library support under linux and optionally under Windows.
|
||||
* DerelictSDL2 + SDL2 for cross platform support
|
||||
* `binbc-opengl` - for OpenGL support
|
||||
* `bindbc-freetype` + FreeType library support under linux and optionally under Windows.
|
||||
* `bindbc-sdl` + SDL2 for cross platform support
|
||||
* WindowsAPI bindings from http://www.dsource.org/projects/bindings/wiki/WindowsApi (patched)
|
||||
* X11 binding when SDL2 is not used
|
||||
* PNG and JPEG reading code is based on dlib sources
|
||||
|
|
|
@ -1,460 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
|
||||
<ProjectGuid>{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}</ProjectGuid>
|
||||
<Compiler>DMD2</Compiler>
|
||||
<PreferOneStepBuild>true</PreferOneStepBuild>
|
||||
<UseDefaultCompiler>true</UseDefaultCompiler>
|
||||
<IncrementalLinking>true</IncrementalLinking>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>USE_SDL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/Debug</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>USE_SDL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/Release</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Unittest|x64' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\Unittest</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>USE_SDL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/Unittest</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>true</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>Executable</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMinimal|x64' ">
|
||||
<OutputPath>bin\DebugMinimal</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_SDL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/DebugMinimal</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMinimal|x64' ">
|
||||
<OutputPath>bin\ReleaseMinimal</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_SDL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/ReleaseMinimal</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'UnittestMinimal|x64' ">
|
||||
<OutputPath>bin\UnittestMinimal</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_SDL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/UnittestMinimal</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugX11|x64' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\DebugX11</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_X11</String>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/DebugX11</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>true</LinkinThirdPartyLibraries>
|
||||
<Libs>
|
||||
<Libs>
|
||||
<Lib>-L-lX11</Lib>
|
||||
</Libs>
|
||||
</Libs>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugX11|x86' ">
|
||||
<OutputPath>bin\DebugX11</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_X11</String>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/DebugX11</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseX11|x64' ">
|
||||
<OutputPath>bin\ReleaseX11</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_X11</String>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/ReleaseX11</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'UnittestX11|x64' ">
|
||||
<OutputPath>bin\UnittestX11</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_X11</String>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/UnittestX11</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugConsole|x64' ">
|
||||
<OutputPath>bin\DebugConsole</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_CONSOLE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/DebugConsole</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugConsole|AnyCPU' ">
|
||||
<OutputPath>bin\DebugConsole</OutputPath>
|
||||
<ObjectsDirectory>obj/DebugConsole</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-linux</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="src\dlangui\core\collections.d" />
|
||||
<Compile Include="src\dlangui\core\css.d" />
|
||||
<Compile Include="src\dlangui\core\cssparser.d" />
|
||||
<Compile Include="src\dlangui\core\dom.d" />
|
||||
<Compile Include="src\dlangui\core\editable.d" />
|
||||
<Compile Include="src\dlangui\core\events.d" />
|
||||
<Compile Include="src\dlangui\core\filemanager.d" />
|
||||
<Compile Include="src\dlangui\core\files.d" />
|
||||
<Compile Include="src\dlangui\core\i18n.d" />
|
||||
<Compile Include="src\dlangui\core\linestream.d" />
|
||||
<Compile Include="src\dlangui\core\logger.d" />
|
||||
<Compile Include="src\dlangui\core\math3d.d" />
|
||||
<Compile Include="src\dlangui\core\parseutils.d" />
|
||||
<Compile Include="src\dlangui\core\settings.d" />
|
||||
<Compile Include="src\dlangui\core\signals.d" />
|
||||
<Compile Include="src\dlangui\core\stdaction.d" />
|
||||
<Compile Include="src\dlangui\core\streams.d" />
|
||||
<Compile Include="src\dlangui\core\textsource.d" />
|
||||
<Compile Include="src\dlangui\core\types.d" />
|
||||
<Compile Include="src\dlangui\dialogs\dialog.d" />
|
||||
<Compile Include="src\dlangui\dialogs\filedlg.d" />
|
||||
<Compile Include="src\dlangui\dialogs\inputbox.d" />
|
||||
<Compile Include="src\dlangui\dialogs\msgbox.d" />
|
||||
<Compile Include="src\dlangui\dialogs\settingsdialog.d" />
|
||||
<Compile Include="src\dlangui\dml\annotations.d" />
|
||||
<Compile Include="src\dlangui\dml\dmlhighlight.d" />
|
||||
<Compile Include="src\dlangui\dml\parser.d" />
|
||||
<Compile Include="src\dlangui\dml\tokenizer.d" />
|
||||
<Compile Include="src\dlangui\graphics\colors.d" />
|
||||
<Compile Include="src\dlangui\graphics\drawbuf.d" />
|
||||
<Compile Include="src\dlangui\graphics\fonts.d" />
|
||||
<Compile Include="src\dlangui\graphics\ftfonts.d" />
|
||||
<Compile Include="src\dlangui\graphics\gldrawbuf.d" />
|
||||
<Compile Include="src\dlangui\graphics\glsupport.d" />
|
||||
<Compile Include="src\dlangui\graphics\images.d" />
|
||||
<Compile Include="src\dlangui\graphics\resources.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\camera.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\drawableobject.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\effect.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\fbximport.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\light.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\material.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\mesh.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\model.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\node.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\objimport.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\scene3d.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\transform.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\skybox.d" />
|
||||
<Compile Include="src\dlangui\graphics\xpm\xpmcolors.d" />
|
||||
<Compile Include="src\dlangui\graphics\xpm\reader.d" />
|
||||
<Compile Include="src\dlangui\platforms\common\platform.d" />
|
||||
<Compile Include="src\dlangui\platforms\sdl\sdlapp.d" />
|
||||
<Compile Include="src\dlangui\widgets\appframe.d" />
|
||||
<Compile Include="src\dlangui\widgets\charts.d" />
|
||||
<Compile Include="src\dlangui\widgets\combobox.d" />
|
||||
<Compile Include="src\dlangui\widgets\controls.d" />
|
||||
<Compile Include="src\dlangui\widgets\docks.d" />
|
||||
<Compile Include="src\dlangui\widgets\editors.d" />
|
||||
<Compile Include="src\dlangui\widgets\grid.d" />
|
||||
<Compile Include="src\dlangui\widgets\groupbox.d" />
|
||||
<Compile Include="src\dlangui\widgets\scrollbar.d" />
|
||||
<Compile Include="src\dlangui\widgets\progressbar.d" />
|
||||
<Compile Include="src\dlangui\widgets\layouts.d" />
|
||||
<Compile Include="src\dlangui\widgets\lists.d" />
|
||||
<Compile Include="src\dlangui\widgets\menu.d" />
|
||||
<Compile Include="src\dlangui\widgets\metadata.d" />
|
||||
<Compile Include="src\dlangui\widgets\popup.d" />
|
||||
<Compile Include="src\dlangui\widgets\scroll.d" />
|
||||
<Compile Include="src\dlangui\widgets\srcedit.d" />
|
||||
<Compile Include="src\dlangui\widgets\statusline.d" />
|
||||
<Compile Include="src\dlangui\widgets\styles.d" />
|
||||
<Compile Include="src\dlangui\widgets\tabs.d" />
|
||||
<Compile Include="src\dlangui\widgets\toolbars.d" />
|
||||
<Compile Include="src\dlangui\widgets\tree.d" />
|
||||
<Compile Include="src\dlangui\widgets\widget.d" />
|
||||
<Compile Include="src\dlangui\widgets\winframe.d" />
|
||||
<Compile Include="src\dlangui\package.d" />
|
||||
<Compile Include="deps\DerelictFT\source\derelict\freetype\ft.d" />
|
||||
<Compile Include="deps\DerelictFT\source\derelict\freetype\functions.d" />
|
||||
<Compile Include="deps\DerelictFT\source\derelict\freetype\types.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\arb.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\cgl.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\constants.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\deprecatedConstants.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\deprecatedFunctions.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\ext.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\functions.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\gl.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\gl3.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\glx.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\glxext.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\internal.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\types.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\wgl.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\wglext.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\functions.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\image.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\mixer.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\net.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\sdl.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\ttf.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\types.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\exception.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\loader.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\sharedlib.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\system.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\wintypes.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\xtypes.d" />
|
||||
<Compile Include="3rdparty\fontconfig\functions.d" />
|
||||
<Compile Include="3rdparty\fontconfig\package.d" />
|
||||
<Compile Include="3rdparty\fontconfig\fctypes.d" />
|
||||
<Compile Include="deps\x11\source\x11\keysym.d" />
|
||||
<Compile Include="deps\x11\source\x11\keysymdef.d" />
|
||||
<Compile Include="deps\x11\source\x11\X.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xatom.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xlib.d" />
|
||||
<Compile Include="deps\x11\source\x11\XlibConf.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xlibint.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xlib_xcb.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xmd.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xproto.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xprotostr.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xproto_undef.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xregion.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xresource.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xtos.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xutil.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\randr.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\render.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\Xcomposite.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\Xfixes.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\Xge.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\XI.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\XI2.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\XInput.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\XInput2.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\Xrandr.d" />
|
||||
<Compile Include="deps\x11\source\x11\extensions\Xrender.d" />
|
||||
<Compile Include="src\dlangui\platforms\x11\x11app.d" />
|
||||
<Compile Include="src\dlangui\platforms\common\startup.d" />
|
||||
<Compile Include="src\dlangui\core\config.d" />
|
||||
<Compile Include="3rdparty\dimage\array.d" />
|
||||
<Compile Include="3rdparty\dimage\bitio.d" />
|
||||
<Compile Include="3rdparty\dimage\compound.d" />
|
||||
<Compile Include="3rdparty\dimage\huffman.d" />
|
||||
<Compile Include="3rdparty\dimage\idct.d" />
|
||||
<Compile Include="3rdparty\dimage\image.d" />
|
||||
<Compile Include="3rdparty\dimage\jpeg.d" />
|
||||
<Compile Include="3rdparty\dimage\memory.d" />
|
||||
<Compile Include="3rdparty\dimage\png.d" />
|
||||
<Compile Include="3rdparty\dimage\stream.d" />
|
||||
<Compile Include="3rdparty\dimage\zlib.d" />
|
||||
<Compile Include="src\dlangui\core\asyncsocket.d" />
|
||||
<Compile Include="src\dlangui\core\queue.d" />
|
||||
<Compile Include="src\dlangui\graphics\domrender\domrender.d" />
|
||||
<Compile Include="src\dlangui\graphics\domrender\renderblock.d" />
|
||||
<Compile Include="src\dlangui\platforms\console\consoleapp.d" />
|
||||
<Compile Include="src\dlangui\platforms\console\consolefont.d" />
|
||||
<Compile Include="src\dlangui\platforms\console\dconsole.d" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="src\dlangui\platforms\x11\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -1,159 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "dlangui-monod-linux", "dlangui-monod-linux.dproj", "{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "example1-monod-linux", "examples\example1\example1-monod-linux.dproj", "{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "helloworld-monod-linux", "examples\helloworld\helloworld-monod-linux.dproj", "{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "tetris-monod-linux", "examples\tetris\tetris-monod-linux.dproj", "{0A3A0D08-E4DC-418E-B92B-561CC91C2306}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "dmledit-monod-linux", "examples\dmledit\dmledit-monod-linux.dproj", "{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "spreadsheet-monod-linux", "examples\spreadsheet\spreadsheet-monod-linux.dproj", "{5BD82AA8-4026-44C2-8957-B4E2932542F0}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Unittest|Any CPU = Unittest|Any CPU
|
||||
DebugMinimal|Any CPU = DebugMinimal|Any CPU
|
||||
ReleaseMinimal|Any CPU = ReleaseMinimal|Any CPU
|
||||
UnittestMinimal|Any CPU = UnittestMinimal|Any CPU
|
||||
DebugX11|Any CPU = DebugX11|Any CPU
|
||||
ReleaseX11|Any CPU = ReleaseX11|Any CPU
|
||||
UnittestX11|Any CPU = UnittestX11|Any CPU
|
||||
DebugConsole|Any CPU = DebugConsole|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.DebugConsole|Any CPU.ActiveCfg = DebugConsole|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.DebugConsole|Any CPU.Build.0 = DebugConsole|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.DebugMinimal|Any CPU.ActiveCfg = DebugMinimal|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.DebugMinimal|Any CPU.Build.0 = DebugMinimal|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.DebugX11|Any CPU.ActiveCfg = DebugX11|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.DebugX11|Any CPU.Build.0 = DebugX11|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.Release|Any CPU.Build.0 = Release|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.ReleaseMinimal|Any CPU.ActiveCfg = ReleaseMinimal|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.ReleaseMinimal|Any CPU.Build.0 = ReleaseMinimal|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.ReleaseX11|Any CPU.ActiveCfg = ReleaseX11|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.ReleaseX11|Any CPU.Build.0 = ReleaseX11|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.UnittestMinimal|Any CPU.ActiveCfg = UnittestMinimal|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.UnittestMinimal|Any CPU.Build.0 = UnittestMinimal|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.UnittestX11|Any CPU.ActiveCfg = UnittestX11|x64
|
||||
{075C374A-563A-4CAC-9E9F-0B6E1DFEAEC3}.UnittestX11|Any CPU.Build.0 = UnittestX11|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.DebugConsole|Any CPU.ActiveCfg = DebugConsole|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.DebugConsole|Any CPU.Build.0 = DebugConsole|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.DebugMinimal|Any CPU.ActiveCfg = DebugMinimal|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.DebugMinimal|Any CPU.Build.0 = DebugMinimal|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.DebugX11|Any CPU.ActiveCfg = DebugX11|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.DebugX11|Any CPU.Build.0 = DebugX11|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.Release|Any CPU.Build.0 = Release|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.ReleaseMinimal|Any CPU.ActiveCfg = ReleaseMinimal|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.ReleaseMinimal|Any CPU.Build.0 = ReleaseMinimal|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.ReleaseX11|Any CPU.ActiveCfg = ReleaseX11|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.ReleaseX11|Any CPU.Build.0 = ReleaseX11|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.UnittestMinimal|Any CPU.ActiveCfg = UnittestMinimal|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.UnittestMinimal|Any CPU.Build.0 = UnittestMinimal|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.UnittestX11|Any CPU.ActiveCfg = UnittestX11|x64
|
||||
{0A3A0D08-E4DC-418E-B92B-561CC91C2306}.UnittestX11|Any CPU.Build.0 = UnittestX11|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.DebugConsole|Any CPU.ActiveCfg = DebugConsole|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.DebugConsole|Any CPU.Build.0 = DebugConsole|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.DebugMinimal|Any CPU.ActiveCfg = DebugMinimal|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.DebugMinimal|Any CPU.Build.0 = DebugMinimal|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.DebugX11|Any CPU.ActiveCfg = DebugX11|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.DebugX11|Any CPU.Build.0 = DebugX11|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.Release|Any CPU.Build.0 = Release|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.ReleaseMinimal|Any CPU.ActiveCfg = ReleaseMinimal|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.ReleaseMinimal|Any CPU.Build.0 = ReleaseMinimal|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.ReleaseX11|Any CPU.ActiveCfg = ReleaseX11|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.ReleaseX11|Any CPU.Build.0 = ReleaseX11|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.UnittestMinimal|Any CPU.ActiveCfg = UnittestMinimal|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.UnittestMinimal|Any CPU.Build.0 = UnittestMinimal|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.UnittestX11|Any CPU.ActiveCfg = UnittestX11|x64
|
||||
{54BDE028-6064-4CA9-B6CA-4C0BEEE70F24}.UnittestX11|Any CPU.Build.0 = UnittestX11|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.DebugConsole|Any CPU.ActiveCfg = DebugConsole|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.DebugConsole|Any CPU.Build.0 = DebugConsole|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.DebugMinimal|Any CPU.ActiveCfg = DebugMinimal|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.DebugMinimal|Any CPU.Build.0 = DebugMinimal|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.DebugX11|Any CPU.ActiveCfg = DebugX11|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.DebugX11|Any CPU.Build.0 = DebugX11|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.Release|Any CPU.Build.0 = Release|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.ReleaseMinimal|Any CPU.ActiveCfg = ReleaseMinimal|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.ReleaseMinimal|Any CPU.Build.0 = ReleaseMinimal|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.ReleaseX11|Any CPU.ActiveCfg = ReleaseX11|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.ReleaseX11|Any CPU.Build.0 = ReleaseX11|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.UnittestMinimal|Any CPU.ActiveCfg = UnittestMinimal|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.UnittestMinimal|Any CPU.Build.0 = UnittestMinimal|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.UnittestX11|Any CPU.ActiveCfg = UnittestX11|x64
|
||||
{5BD82AA8-4026-44C2-8957-B4E2932542F0}.UnittestX11|Any CPU.Build.0 = UnittestX11|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.DebugConsole|Any CPU.ActiveCfg = DebugConsole|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.DebugConsole|Any CPU.Build.0 = DebugConsole|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.DebugMinimal|Any CPU.ActiveCfg = DebugMinimal|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.DebugMinimal|Any CPU.Build.0 = DebugMinimal|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.DebugX11|Any CPU.ActiveCfg = DebugX11|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.DebugX11|Any CPU.Build.0 = DebugX11|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.Release|Any CPU.Build.0 = Release|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.ReleaseMinimal|Any CPU.ActiveCfg = ReleaseMinimal|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.ReleaseMinimal|Any CPU.Build.0 = ReleaseMinimal|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.ReleaseX11|Any CPU.ActiveCfg = ReleaseX11|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.ReleaseX11|Any CPU.Build.0 = ReleaseX11|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.UnittestMinimal|Any CPU.ActiveCfg = UnittestMinimal|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.UnittestMinimal|Any CPU.Build.0 = UnittestMinimal|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.UnittestX11|Any CPU.ActiveCfg = UnittestX11|x64
|
||||
{8E722D80-CF8D-4D98-BEAE-7BC9E6752AC4}.UnittestX11|Any CPU.Build.0 = UnittestX11|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.DebugConsole|Any CPU.ActiveCfg = DebugConsole|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.DebugConsole|Any CPU.Build.0 = DebugConsole|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.DebugMinimal|Any CPU.ActiveCfg = DebugMinimal|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.DebugMinimal|Any CPU.Build.0 = DebugMinimal|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.DebugX11|Any CPU.ActiveCfg = DebugX11|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.DebugX11|Any CPU.Build.0 = DebugX11|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.Release|Any CPU.Build.0 = Release|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.ReleaseMinimal|Any CPU.ActiveCfg = ReleaseMinimal|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.ReleaseMinimal|Any CPU.Build.0 = ReleaseMinimal|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.ReleaseX11|Any CPU.ActiveCfg = ReleaseX11|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.ReleaseX11|Any CPU.Build.0 = ReleaseX11|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.UnittestMinimal|Any CPU.ActiveCfg = UnittestMinimal|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.UnittestMinimal|Any CPU.Build.0 = UnittestMinimal|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.UnittestX11|Any CPU.ActiveCfg = UnittestX11|x64
|
||||
{A38BEF21-AAFE-4115-A978-63B7C8C2FBD1}.UnittestX11|Any CPU.Build.0 = UnittestX11|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(MonoDevelopProperties) = preSolution
|
||||
Policies = $0
|
||||
$0.TextStylePolicy = $1
|
||||
$1.FileWidth = 120
|
||||
$1.inheritsSet = VisualStudio
|
||||
$1.inheritsScope = text/plain
|
||||
$1.scope = text/plain
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -1,257 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
|
||||
<ProjectGuid>{1CC7C43E-7B39-4AFC-A45B-F1D9F582CF6D}</ProjectGuid>
|
||||
<Compiler>DMD2</Compiler>
|
||||
<PreferOneStepBuild>true</PreferOneStepBuild>
|
||||
<UseDefaultCompiler>true</UseDefaultCompiler>
|
||||
<IncrementalLinking>true</IncrementalLinking>
|
||||
<Includes>
|
||||
<Includes>
|
||||
<Path>dlangui/src</Path>
|
||||
</Includes>
|
||||
</Includes>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_SDL</String>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/Debug</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>true</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews -Jviews/res -Jviews/res/i18n -Jviews/res/mdpi -Jviews/res/hdpi -Jviews/res/shaders</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-osx</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<ObjectsDirectory>obj/Release</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>true</LinkinThirdPartyLibraries>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-osx</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
<ExtraCompilerArguments>-Jviews -Jviews/res -Jviews/res/i18n -Jviews/res/mdpi -Jviews/res/hdpi -Jviews/res/shaders</ExtraCompilerArguments>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_SDL</String>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Unittest|x64' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\Unittest</OutputPath>
|
||||
<ObjectsDirectory>obj/Unittest</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>true</LinkinThirdPartyLibraries>
|
||||
<UnittestMode>true</UnittestMode>
|
||||
<OutputName>libdlangui-monod-osx</OutputName>
|
||||
<Target>Executable</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
<ExtraCompilerArguments>-Jviews -Jviews/res -Jviews/res/i18n -Jviews/res/mdpi -Jviews/res/hdpi -Jviews/res/shaders</ExtraCompilerArguments>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_SDL</String>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugX11|x64' ">
|
||||
<OutputPath>bin\DebugX11</OutputPath>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_X11</String>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<ObjectsDirectory>obj/DebugX11</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>true</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews -Jviews/res -Jviews/res/i18n -Jviews/res/mdpi -Jviews/res/hdpi -Jviews/res/shaders</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-osx</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugX11|AnyCPU' ">
|
||||
<OutputPath>bin\DebugX11</OutputPath>
|
||||
<ObjectsDirectory>obj/DebugX11</ObjectsDirectory>
|
||||
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
|
||||
<ExtraCompilerArguments>-Jviews -Jviews/res -Jviews/res/i18n -Jviews/res/mdpi -Jviews/res/hdpi -Jviews/res/shaders</ExtraCompilerArguments>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<OutputName>libdlangui-monod-osx</OutputName>
|
||||
<Target>StaticLibrary</Target>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="src\dlangui\core\collections.d" />
|
||||
<Compile Include="src\dlangui\core\config.d" />
|
||||
<Compile Include="src\dlangui\core\css.d" />
|
||||
<Compile Include="src\dlangui\core\cssparser.d" />
|
||||
<Compile Include="src\dlangui\core\dom.d" />
|
||||
<Compile Include="src\dlangui\core\editable.d" />
|
||||
<Compile Include="src\dlangui\core\events.d" />
|
||||
<Compile Include="src\dlangui\core\filemanager.d" />
|
||||
<Compile Include="src\dlangui\core\files.d" />
|
||||
<Compile Include="src\dlangui\core\i18n.d" />
|
||||
<Compile Include="src\dlangui\core\linestream.d" />
|
||||
<Compile Include="src\dlangui\core\logger.d" />
|
||||
<Compile Include="src\dlangui\core\math3d.d" />
|
||||
<Compile Include="src\dlangui\core\parseutils.d" />
|
||||
<Compile Include="src\dlangui\core\settings.d" />
|
||||
<Compile Include="src\dlangui\core\signals.d" />
|
||||
<Compile Include="src\dlangui\core\stdaction.d" />
|
||||
<Compile Include="src\dlangui\core\streams.d" />
|
||||
<Compile Include="src\dlangui\core\textsource.d" />
|
||||
<Compile Include="src\dlangui\core\types.d" />
|
||||
<Compile Include="src\dlangui\dialogs\dialog.d" />
|
||||
<Compile Include="src\dlangui\dialogs\filedlg.d" />
|
||||
<Compile Include="src\dlangui\dialogs\msgbox.d" />
|
||||
<Compile Include="src\dlangui\dialogs\inputbox.d" />
|
||||
<Compile Include="src\dlangui\dialogs\settingsdialog.d" />
|
||||
<Compile Include="src\dlangui\dml\annotations.d" />
|
||||
<Compile Include="src\dlangui\dml\dmlhighlight.d" />
|
||||
<Compile Include="src\dlangui\dml\parser.d" />
|
||||
<Compile Include="src\dlangui\dml\tokenizer.d" />
|
||||
<Compile Include="src\dlangui\graphics\colors.d" />
|
||||
<Compile Include="src\dlangui\graphics\drawbuf.d" />
|
||||
<Compile Include="src\dlangui\graphics\domrender.d" />
|
||||
<Compile Include="src\dlangui\graphics\fonts.d" />
|
||||
<Compile Include="src\dlangui\graphics\ftfonts.d" />
|
||||
<Compile Include="src\dlangui\graphics\gldrawbuf.d" />
|
||||
<Compile Include="src\dlangui\graphics\glsupport.d" />
|
||||
<Compile Include="src\dlangui\graphics\images.d" />
|
||||
<Compile Include="src\dlangui\graphics\resources.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\camera.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\drawableobject.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\effect.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\fbximport.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\light.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\material.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\mesh.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\model.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\node.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\objimport.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\scene3d.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\transform.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\skybox.d" />
|
||||
<Compile Include="src\dlangui\graphics\xpm\reader.d" />
|
||||
<Compile Include="src\dlangui\platforms\common\platform.d" />
|
||||
<Compile Include="src\dlangui\platforms\sdl\sdlapp.d" />
|
||||
<Compile Include="src\dlangui\widgets\appframe.d" />
|
||||
<Compile Include="src\dlangui\widgets\charts.d" />
|
||||
<Compile Include="src\dlangui\widgets\combobox.d" />
|
||||
<Compile Include="src\dlangui\widgets\controls.d" />
|
||||
<Compile Include="src\dlangui\widgets\docks.d" />
|
||||
<Compile Include="src\dlangui\widgets\editors.d" />
|
||||
<Compile Include="src\dlangui\widgets\grid.d" />
|
||||
<Compile Include="src\dlangui\widgets\groupbox.d" />
|
||||
<Compile Include="src\dlangui\widgets\scrollbar.d" />
|
||||
<Compile Include="src\dlangui\widgets\progressbar.d" />
|
||||
<Compile Include="src\dlangui\widgets\layouts.d" />
|
||||
<Compile Include="src\dlangui\widgets\lists.d" />
|
||||
<Compile Include="src\dlangui\widgets\menu.d" />
|
||||
<Compile Include="src\dlangui\widgets\metadata.d" />
|
||||
<Compile Include="src\dlangui\widgets\popup.d" />
|
||||
<Compile Include="src\dlangui\widgets\scroll.d" />
|
||||
<Compile Include="src\dlangui\widgets\srcedit.d" />
|
||||
<Compile Include="src\dlangui\widgets\statusline.d" />
|
||||
<Compile Include="src\dlangui\widgets\styles.d" />
|
||||
<Compile Include="src\dlangui\widgets\tabs.d" />
|
||||
<Compile Include="src\dlangui\widgets\toolbars.d" />
|
||||
<Compile Include="src\dlangui\widgets\tree.d" />
|
||||
<Compile Include="src\dlangui\widgets\widget.d" />
|
||||
<Compile Include="src\dlangui\widgets\winframe.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\exception.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\loader.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\sharedlib.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\system.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\wintypes.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\xtypes.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\functions.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\image.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\mixer.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\net.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\sdl.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\ttf.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\types.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\arb.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\cgl.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\constants.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\deprecatedConstants.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\deprecatedFunctions.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\ext.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\functions.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\gl.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\gl3.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\glx.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\glxext.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\internal.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\types.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\wgl.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\wglext.d" />
|
||||
<Compile Include="deps\DerelictFT\source\derelict\freetype\ft.d" />
|
||||
<Compile Include="deps\DerelictFT\source\derelict\freetype\functions.d" />
|
||||
<Compile Include="deps\DerelictFT\source\derelict\freetype\types.d" />
|
||||
<Compile Include="src\dlangui\graphics\xpm\xpmcolors.d" />
|
||||
<Compile Include="3rdparty\fontconfig\functions.d" />
|
||||
<Compile Include="3rdparty\fontconfig\package.d" />
|
||||
<Compile Include="3rdparty\fontconfig\fctypes.d" />
|
||||
<Compile Include="src\dlangui\package.d" />
|
||||
<Compile Include="deps\DerelictCocoa\source\derelict\cocoa\appkit.d" />
|
||||
<Compile Include="deps\DerelictCocoa\source\derelict\cocoa\cocoa.d" />
|
||||
<Compile Include="deps\DerelictCocoa\source\derelict\cocoa\coregraphics.d" />
|
||||
<Compile Include="deps\DerelictCocoa\source\derelict\cocoa\coreimage.d" />
|
||||
<Compile Include="deps\DerelictCocoa\source\derelict\cocoa\foundation.d" />
|
||||
<Compile Include="deps\DerelictCocoa\source\derelict\cocoa\package.d" />
|
||||
<Compile Include="deps\DerelictCocoa\source\derelict\cocoa\runtime.d" />
|
||||
<Compile Include="src\dlangui\platforms\common\startup.d" />
|
||||
<Compile Include="src\dlangui\platforms\x11\x11app.d" />
|
||||
<Compile Include="deps\x11\source\x11\keysym.d" />
|
||||
<Compile Include="deps\x11\source\x11\keysymdef.d" />
|
||||
<Compile Include="deps\x11\source\x11\X.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xatom.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xlib_xcb.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xlib.d" />
|
||||
<Compile Include="deps\x11\source\x11\XlibConf.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xlibint.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xmd.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xproto_undef.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xproto.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xprotostr.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xregion.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xresource.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xtos.d" />
|
||||
<Compile Include="deps\x11\source\x11\Xutil.d" />
|
||||
<Compile Include="3rdparty\dimage\array.d" />
|
||||
<Compile Include="3rdparty\dimage\bitio.d" />
|
||||
<Compile Include="3rdparty\dimage\compound.d" />
|
||||
<Compile Include="3rdparty\dimage\huffman.d" />
|
||||
<Compile Include="3rdparty\dimage\idct.d" />
|
||||
<Compile Include="3rdparty\dimage\image.d" />
|
||||
<Compile Include="3rdparty\dimage\jpeg.d" />
|
||||
<Compile Include="3rdparty\dimage\memory.d" />
|
||||
<Compile Include="3rdparty\dimage\png.d" />
|
||||
<Compile Include="3rdparty\dimage\stream.d" />
|
||||
<Compile Include="3rdparty\dimage\zlib.d" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -1,101 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "dlangui-monod-osx", "dlangui-monod-osx.dproj", "{1CC7C43E-7B39-4AFC-A45B-F1D9F582CF6D}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "example1-monod-osx", "examples\example1\example1-monod-osx.dproj", "{079F4963-E637-4E8F-9EB3-BDC404F9DC1D}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "derelictcocoatest-monod-osx", "examples\derelictcocoatest-monod-osx\derelictcocoatest-monod-osx.dproj", "{1F050D82-5245-4B51-A554-473194EA0DE9}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "dmledit-monod-osx", "examples\dmledit\dmledit-monod-osx.dproj", "{8E3B1C65-63A3-4BD8-9268-604EE648E861}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "helloworld-monod-osx", "examples\helloworld\helloworld-monod-osx.dproj", "{CB4E43FF-5E6A-4F4E-9A6C-F182EC258112}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "tetris-monod-osx", "examples\tetris\tetris-monod-osx.dproj", "{07ECE815-C4C3-4CDB-A60C-2E304EAAA2C7}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "spreadsheet-monod-osx", "examples\spreadsheet\spreadsheet-monod-osx.dproj", "{AAC53A3B-44F0-4597-8074-F92021F63654}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "dlangide-monod-osx", "..\dlangide\dlangide-monod-osx.dproj", "{5125282E-FF14-4FF9-A65A-1B4816D76C6A}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "opengl-monod-osx", "examples\opengl\opengl-monod-osx.dproj", "{F533AB80-BD2F-4F4A-A23D-16AD24CE822A}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Unittest|Any CPU = Unittest|Any CPU
|
||||
DebugX11|Any CPU = DebugX11|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{079F4963-E637-4E8F-9EB3-BDC404F9DC1D}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{079F4963-E637-4E8F-9EB3-BDC404F9DC1D}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{079F4963-E637-4E8F-9EB3-BDC404F9DC1D}.DebugX11|Any CPU.ActiveCfg = DebugX11|x64
|
||||
{079F4963-E637-4E8F-9EB3-BDC404F9DC1D}.DebugX11|Any CPU.Build.0 = DebugX11|x64
|
||||
{079F4963-E637-4E8F-9EB3-BDC404F9DC1D}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{079F4963-E637-4E8F-9EB3-BDC404F9DC1D}.Release|Any CPU.Build.0 = Release|x64
|
||||
{079F4963-E637-4E8F-9EB3-BDC404F9DC1D}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{079F4963-E637-4E8F-9EB3-BDC404F9DC1D}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{07ECE815-C4C3-4CDB-A60C-2E304EAAA2C7}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{07ECE815-C4C3-4CDB-A60C-2E304EAAA2C7}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{07ECE815-C4C3-4CDB-A60C-2E304EAAA2C7}.DebugX11|Any CPU.ActiveCfg = DebugX11|Any CPU
|
||||
{07ECE815-C4C3-4CDB-A60C-2E304EAAA2C7}.DebugX11|Any CPU.Build.0 = DebugX11|Any CPU
|
||||
{07ECE815-C4C3-4CDB-A60C-2E304EAAA2C7}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{07ECE815-C4C3-4CDB-A60C-2E304EAAA2C7}.Release|Any CPU.Build.0 = Release|x64
|
||||
{07ECE815-C4C3-4CDB-A60C-2E304EAAA2C7}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{07ECE815-C4C3-4CDB-A60C-2E304EAAA2C7}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{1CC7C43E-7B39-4AFC-A45B-F1D9F582CF6D}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{1CC7C43E-7B39-4AFC-A45B-F1D9F582CF6D}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{1CC7C43E-7B39-4AFC-A45B-F1D9F582CF6D}.DebugX11|Any CPU.ActiveCfg = DebugX11|x64
|
||||
{1CC7C43E-7B39-4AFC-A45B-F1D9F582CF6D}.DebugX11|Any CPU.Build.0 = DebugX11|x64
|
||||
{1CC7C43E-7B39-4AFC-A45B-F1D9F582CF6D}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{1CC7C43E-7B39-4AFC-A45B-F1D9F582CF6D}.Release|Any CPU.Build.0 = Release|x64
|
||||
{1CC7C43E-7B39-4AFC-A45B-F1D9F582CF6D}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{1CC7C43E-7B39-4AFC-A45B-F1D9F582CF6D}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{1F050D82-5245-4B51-A554-473194EA0DE9}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{1F050D82-5245-4B51-A554-473194EA0DE9}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{1F050D82-5245-4B51-A554-473194EA0DE9}.DebugX11|Any CPU.ActiveCfg = DebugX11|Any CPU
|
||||
{1F050D82-5245-4B51-A554-473194EA0DE9}.DebugX11|Any CPU.Build.0 = DebugX11|Any CPU
|
||||
{1F050D82-5245-4B51-A554-473194EA0DE9}.Release|Any CPU.ActiveCfg = Debug|x64
|
||||
{1F050D82-5245-4B51-A554-473194EA0DE9}.Release|Any CPU.Build.0 = Debug|x64
|
||||
{1F050D82-5245-4B51-A554-473194EA0DE9}.Unittest|Any CPU.ActiveCfg = Unittest|Any CPU
|
||||
{1F050D82-5245-4B51-A554-473194EA0DE9}.Unittest|Any CPU.Build.0 = Unittest|Any CPU
|
||||
{5125282E-FF14-4FF9-A65A-1B4816D76C6A}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{5125282E-FF14-4FF9-A65A-1B4816D76C6A}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{5125282E-FF14-4FF9-A65A-1B4816D76C6A}.DebugX11|Any CPU.ActiveCfg = Debug|x64
|
||||
{5125282E-FF14-4FF9-A65A-1B4816D76C6A}.DebugX11|Any CPU.Build.0 = Debug|x64
|
||||
{5125282E-FF14-4FF9-A65A-1B4816D76C6A}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{5125282E-FF14-4FF9-A65A-1B4816D76C6A}.Release|Any CPU.Build.0 = Release|x64
|
||||
{8E3B1C65-63A3-4BD8-9268-604EE648E861}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{8E3B1C65-63A3-4BD8-9268-604EE648E861}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{8E3B1C65-63A3-4BD8-9268-604EE648E861}.DebugX11|Any CPU.ActiveCfg = DebugX11|Any CPU
|
||||
{8E3B1C65-63A3-4BD8-9268-604EE648E861}.DebugX11|Any CPU.Build.0 = DebugX11|Any CPU
|
||||
{8E3B1C65-63A3-4BD8-9268-604EE648E861}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{8E3B1C65-63A3-4BD8-9268-604EE648E861}.Release|Any CPU.Build.0 = Release|x64
|
||||
{8E3B1C65-63A3-4BD8-9268-604EE648E861}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{8E3B1C65-63A3-4BD8-9268-604EE648E861}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{AAC53A3B-44F0-4597-8074-F92021F63654}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{AAC53A3B-44F0-4597-8074-F92021F63654}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{AAC53A3B-44F0-4597-8074-F92021F63654}.DebugX11|Any CPU.ActiveCfg = DebugX11|Any CPU
|
||||
{AAC53A3B-44F0-4597-8074-F92021F63654}.DebugX11|Any CPU.Build.0 = DebugX11|Any CPU
|
||||
{AAC53A3B-44F0-4597-8074-F92021F63654}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{AAC53A3B-44F0-4597-8074-F92021F63654}.Release|Any CPU.Build.0 = Release|x64
|
||||
{AAC53A3B-44F0-4597-8074-F92021F63654}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{AAC53A3B-44F0-4597-8074-F92021F63654}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{CB4E43FF-5E6A-4F4E-9A6C-F182EC258112}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{CB4E43FF-5E6A-4F4E-9A6C-F182EC258112}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{CB4E43FF-5E6A-4F4E-9A6C-F182EC258112}.DebugX11|Any CPU.ActiveCfg = DebugX11|Any CPU
|
||||
{CB4E43FF-5E6A-4F4E-9A6C-F182EC258112}.DebugX11|Any CPU.Build.0 = DebugX11|Any CPU
|
||||
{CB4E43FF-5E6A-4F4E-9A6C-F182EC258112}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{CB4E43FF-5E6A-4F4E-9A6C-F182EC258112}.Release|Any CPU.Build.0 = Release|x64
|
||||
{CB4E43FF-5E6A-4F4E-9A6C-F182EC258112}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{CB4E43FF-5E6A-4F4E-9A6C-F182EC258112}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{F533AB80-BD2F-4F4A-A23D-16AD24CE822A}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{F533AB80-BD2F-4F4A-A23D-16AD24CE822A}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{F533AB80-BD2F-4F4A-A23D-16AD24CE822A}.DebugX11|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{F533AB80-BD2F-4F4A-A23D-16AD24CE822A}.DebugX11|Any CPU.Build.0 = Debug|Any CPU
|
||||
{F533AB80-BD2F-4F4A-A23D-16AD24CE822A}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{F533AB80-BD2F-4F4A-A23D-16AD24CE822A}.Release|Any CPU.Build.0 = Release|x64
|
||||
{F533AB80-BD2F-4F4A-A23D-16AD24CE822A}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{F533AB80-BD2F-4F4A-A23D-16AD24CE822A}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -1,287 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
|
||||
<ProjectGuid>{45FB40CD-E99A-4C12-AC52-C13364412E09}</ProjectGuid>
|
||||
<Compiler>DMD2</Compiler>
|
||||
<PreferOneStepBuild>true</PreferOneStepBuild>
|
||||
<UseDefaultCompiler>true</UseDefaultCompiler>
|
||||
<IncrementalLinking>true</IncrementalLinking>
|
||||
<Includes>
|
||||
<Includes>
|
||||
<Path>src</Path>
|
||||
<Path>deps\DerelictFT\source</Path>
|
||||
<Path>deps\DerelictSDL2\source</Path>
|
||||
<Path>deps\DerelictGL3\source</Path>
|
||||
<Path>deps\DerelictUtil\source</Path>
|
||||
<Path>deps\dlib</Path>
|
||||
</Includes>
|
||||
</Includes>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<Target>StaticLibrary</Target>
|
||||
<OutputName>libdlangui-monod-windows</OutputName>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<LinkinThirdPartyLibraries>true</LinkinThirdPartyLibraries>
|
||||
<ObjectsDirectory>obj\Debug</ObjectsDirectory>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
<String>Unicode</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<Target>StaticLibrary</Target>
|
||||
<OutputName>libdlangui-monod-windows</OutputName>
|
||||
<UnittestMode>false</UnittestMode>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<LinkinThirdPartyLibraries>true</LinkinThirdPartyLibraries>
|
||||
<ObjectsDirectory>obj\Release</ObjectsDirectory>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
<String>Unicode</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Unittest|x64' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\Unittest</OutputPath>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<Target>Executable</Target>
|
||||
<OutputName>libdlangui-monod-windows</OutputName>
|
||||
<UnittestMode>true</UnittestMode>
|
||||
<ExtraCompilerArguments>-Jviews
|
||||
-Jviews/res
|
||||
-Jviews/res/i18n
|
||||
-Jviews/res/shaders
|
||||
-Jviews/res/mdpi
|
||||
-Jviews/res/hdpi</ExtraCompilerArguments>
|
||||
<LinkinThirdPartyLibraries>true</LinkinThirdPartyLibraries>
|
||||
<ObjectsDirectory>obj\Unittest</ObjectsDirectory>
|
||||
<VersionIds>
|
||||
<VersionIds>
|
||||
<String>USE_FREETYPE</String>
|
||||
<String>USE_OPENGL</String>
|
||||
<String>EmbedStandardResources</String>
|
||||
<String>Unicode</String>
|
||||
</VersionIds>
|
||||
</VersionIds>
|
||||
<DebugLevel>0</DebugLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="src\dlangui\core\collections.d" />
|
||||
<Compile Include="src\dlangui\core\css.d" />
|
||||
<Compile Include="src\dlangui\core\cssparser.d" />
|
||||
<Compile Include="src\dlangui\core\dom.d" />
|
||||
<Compile Include="src\dlangui\core\editable.d" />
|
||||
<Compile Include="src\dlangui\core\events.d" />
|
||||
<Compile Include="src\dlangui\core\filemanager.d" />
|
||||
<Compile Include="src\dlangui\core\files.d" />
|
||||
<Compile Include="src\dlangui\core\i18n.d" />
|
||||
<Compile Include="src\dlangui\core\linestream.d" />
|
||||
<Compile Include="src\dlangui\core\logger.d" />
|
||||
<Compile Include="src\dlangui\core\math3d.d" />
|
||||
<Compile Include="src\dlangui\core\parseutils.d" />
|
||||
<Compile Include="src\dlangui\core\settings.d" />
|
||||
<Compile Include="src\dlangui\core\signals.d" />
|
||||
<Compile Include="src\dlangui\core\stdaction.d" />
|
||||
<Compile Include="src\dlangui\core\streams.d" />
|
||||
<Compile Include="src\dlangui\core\textsource.d" />
|
||||
<Compile Include="src\dlangui\core\types.d" />
|
||||
<Compile Include="src\dlangui\dialogs\dialog.d" />
|
||||
<Compile Include="src\dlangui\dialogs\filedlg.d" />
|
||||
<Compile Include="src\dlangui\dialogs\inputbox.d" />
|
||||
<Compile Include="src\dlangui\dialogs\msgbox.d" />
|
||||
<Compile Include="src\dlangui\dialogs\settingsdialog.d" />
|
||||
<Compile Include="src\dlangui\dml\annotations.d" />
|
||||
<Compile Include="src\dlangui\dml\dmlhighlight.d" />
|
||||
<Compile Include="src\dlangui\dml\parser.d" />
|
||||
<Compile Include="src\dlangui\dml\tokenizer.d" />
|
||||
<Compile Include="src\dlangui\graphics\colors.d" />
|
||||
<Compile Include="src\dlangui\graphics\drawbuf.d" />
|
||||
<Compile Include="src\dlangui\graphics\domrender.d" />
|
||||
<Compile Include="src\dlangui\graphics\fonts.d" />
|
||||
<Compile Include="src\dlangui\graphics\ftfonts.d" />
|
||||
<Compile Include="src\dlangui\graphics\gldrawbuf.d" />
|
||||
<Compile Include="src\dlangui\graphics\glsupport.d" />
|
||||
<Compile Include="src\dlangui\graphics\images.d" />
|
||||
<Compile Include="src\dlangui\graphics\resources.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\camera.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\drawableobject.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\effect.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\fbximport.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\light.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\material.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\mesh.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\model.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\node.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\objimport.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\scene3d.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\transform.d" />
|
||||
<Compile Include="src\dlangui\graphics\scene\skybox.d" />
|
||||
<Compile Include="src\dlangui\graphics\xpm\xpmcolors.d" />
|
||||
<Compile Include="src\dlangui\graphics\xpm\reader.d" />
|
||||
<Compile Include="src\dlangui\platforms\common\platform.d" />
|
||||
<Compile Include="src\dlangui\platforms\sdl\sdlapp.d" />
|
||||
<Compile Include="src\dlangui\widgets\appframe.d" />
|
||||
<Compile Include="src\dlangui\widgets\charts.d" />
|
||||
<Compile Include="src\dlangui\widgets\combobox.d" />
|
||||
<Compile Include="src\dlangui\widgets\controls.d" />
|
||||
<Compile Include="src\dlangui\widgets\docks.d" />
|
||||
<Compile Include="src\dlangui\widgets\editors.d" />
|
||||
<Compile Include="src\dlangui\widgets\grid.d" />
|
||||
<Compile Include="src\dlangui\widgets\progressbar.d" />
|
||||
<Compile Include="src\dlangui\widgets\groupbox.d" />
|
||||
<Compile Include="src\dlangui\widgets\scrollbar.d" />
|
||||
<Compile Include="src\dlangui\widgets\layouts.d" />
|
||||
<Compile Include="src\dlangui\widgets\lists.d" />
|
||||
<Compile Include="src\dlangui\widgets\menu.d" />
|
||||
<Compile Include="src\dlangui\widgets\metadata.d" />
|
||||
<Compile Include="src\dlangui\widgets\popup.d" />
|
||||
<Compile Include="src\dlangui\widgets\scroll.d" />
|
||||
<Compile Include="src\dlangui\widgets\srcedit.d" />
|
||||
<Compile Include="src\dlangui\widgets\statusline.d" />
|
||||
<Compile Include="src\dlangui\widgets\styles.d" />
|
||||
<Compile Include="src\dlangui\widgets\tabs.d" />
|
||||
<Compile Include="src\dlangui\widgets\toolbars.d" />
|
||||
<Compile Include="src\dlangui\widgets\tree.d" />
|
||||
<Compile Include="src\dlangui\widgets\widget.d" />
|
||||
<Compile Include="src\dlangui\widgets\winframe.d" />
|
||||
<Compile Include="3rdparty\win32\basetsd.d" />
|
||||
<Compile Include="3rdparty\win32\basetyps.d" />
|
||||
<Compile Include="3rdparty\win32\cderr.d" />
|
||||
<Compile Include="3rdparty\win32\cguid.d" />
|
||||
<Compile Include="3rdparty\win32\commctrl.d" />
|
||||
<Compile Include="3rdparty\win32\commdlg.d" />
|
||||
<Compile Include="3rdparty\win32\core.d" />
|
||||
<Compile Include="3rdparty\win32\dde.d" />
|
||||
<Compile Include="3rdparty\win32\ddeml.d" />
|
||||
<Compile Include="3rdparty\win32\dlgs.d" />
|
||||
<Compile Include="3rdparty\win32\imm.d" />
|
||||
<Compile Include="3rdparty\win32\lzexpand.d" />
|
||||
<Compile Include="3rdparty\win32\mmsystem.d" />
|
||||
<Compile Include="3rdparty\win32\nb30.d" />
|
||||
<Compile Include="3rdparty\win32\oaidl.d" />
|
||||
<Compile Include="3rdparty\win32\objbase.d" />
|
||||
<Compile Include="3rdparty\win32\objfwd.d" />
|
||||
<Compile Include="3rdparty\win32\objidl.d" />
|
||||
<Compile Include="3rdparty\win32\ocidl.d" />
|
||||
<Compile Include="3rdparty\win32\ole.d" />
|
||||
<Compile Include="3rdparty\win32\ole2.d" />
|
||||
<Compile Include="3rdparty\win32\oleauto.d" />
|
||||
<Compile Include="3rdparty\win32\olectlid.d" />
|
||||
<Compile Include="3rdparty\win32\oleidl.d" />
|
||||
<Compile Include="3rdparty\win32\prsht.d" />
|
||||
<Compile Include="3rdparty\win32\psapi.d" />
|
||||
<Compile Include="3rdparty\win32\rpc.d" />
|
||||
<Compile Include="3rdparty\win32\rpcdce.d" />
|
||||
<Compile Include="3rdparty\win32\rpcdcep.d" />
|
||||
<Compile Include="3rdparty\win32\rpcndr.d" />
|
||||
<Compile Include="3rdparty\win32\rpcnsi.d" />
|
||||
<Compile Include="3rdparty\win32\rpcnsip.d" />
|
||||
<Compile Include="3rdparty\win32\rpcnterr.d" />
|
||||
<Compile Include="3rdparty\win32\shellapi.d" />
|
||||
<Compile Include="3rdparty\win32\shlguid.d" />
|
||||
<Compile Include="3rdparty\win32\shlobj.d" />
|
||||
<Compile Include="3rdparty\win32\unknwn.d" />
|
||||
<Compile Include="3rdparty\win32\uuid.d" />
|
||||
<Compile Include="3rdparty\win32\w32api.d" />
|
||||
<Compile Include="3rdparty\win32\winbase.d" />
|
||||
<Compile Include="3rdparty\win32\wincon.d" />
|
||||
<Compile Include="3rdparty\win32\windef.d" />
|
||||
<Compile Include="3rdparty\win32\windows.d" />
|
||||
<Compile Include="3rdparty\win32\winerror.d" />
|
||||
<Compile Include="3rdparty\win32\wingdi.d" />
|
||||
<Compile Include="3rdparty\win32\winnetwk.d" />
|
||||
<Compile Include="3rdparty\win32\winnls.d" />
|
||||
<Compile Include="3rdparty\win32\winnt.d" />
|
||||
<Compile Include="3rdparty\win32\winperf.d" />
|
||||
<Compile Include="3rdparty\win32\winsock2.d" />
|
||||
<Compile Include="3rdparty\win32\winspool.d" />
|
||||
<Compile Include="3rdparty\win32\winsvc.d" />
|
||||
<Compile Include="3rdparty\win32\winuser.d" />
|
||||
<Compile Include="3rdparty\win32\winver.d" />
|
||||
<Compile Include="3rdparty\win32\ws2tcpip.d" />
|
||||
<Compile Include="3rdparty\win32\wtypes.d" />
|
||||
<Compile Include="3rdparty\fontconfig\functions.d" />
|
||||
<Compile Include="3rdparty\fontconfig\package.d" />
|
||||
<Compile Include="3rdparty\fontconfig\fctypes.d" />
|
||||
<Compile Include="src\dlangui\package.d" />
|
||||
<Compile Include="deps\DerelictFT\source\derelict\freetype\ft.d" />
|
||||
<Compile Include="deps\DerelictFT\source\derelict\freetype\functions.d" />
|
||||
<Compile Include="deps\DerelictFT\source\derelict\freetype\types.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\arb.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\cgl.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\constants.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\deprecatedConstants.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\deprecatedFunctions.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\ext.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\functions.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\gl.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\gl3.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\glx.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\glxext.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\internal.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\types.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\wgl.d" />
|
||||
<Compile Include="deps\DerelictGL3\source\derelict\opengl3\wglext.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\functions.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\image.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\mixer.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\net.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\sdl.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\ttf.d" />
|
||||
<Compile Include="deps\DerelictSDL2\source\derelict\sdl2\types.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\exception.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\loader.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\sharedlib.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\system.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\wintypes.d" />
|
||||
<Compile Include="deps\DerelictUtil\source\derelict\util\xtypes.d" />
|
||||
<Compile Include="src\dlangui\platforms\x11\x11app.d" />
|
||||
<Compile Include="src\dlangui\platforms\common\startup.d" />
|
||||
<Compile Include="src\dlangui\core\config.d" />
|
||||
<Compile Include="3rdparty\dimage\array.d" />
|
||||
<Compile Include="3rdparty\dimage\bitio.d" />
|
||||
<Compile Include="3rdparty\dimage\compound.d" />
|
||||
<Compile Include="3rdparty\dimage\huffman.d" />
|
||||
<Compile Include="3rdparty\dimage\idct.d" />
|
||||
<Compile Include="3rdparty\dimage\image.d" />
|
||||
<Compile Include="3rdparty\dimage\jpeg.d" />
|
||||
<Compile Include="3rdparty\dimage\memory.d" />
|
||||
<Compile Include="3rdparty\dimage\png.d" />
|
||||
<Compile Include="3rdparty\dimage\stream.d" />
|
||||
<Compile Include="3rdparty\dimage\zlib.d" />
|
||||
<Compile Include="src\dlangui\core\asyncsocket.d" />
|
||||
<Compile Include="src\dlangui\core\queue.d" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="3rdparty\win32\makefile" />
|
||||
<None Include="3rdparty\win32\readme.txt" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -1,52 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "dlangui-monod-windows", "dlangui-monod-windows.dproj", "{45FB40CD-E99A-4C12-AC52-C13364412E09}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "dmledit-monod-windows", "examples\dmledit\dmledit-monod-windows.dproj", "{620F56F7-F6DE-45D2-955D-912A22EE728A}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "example1-monod-windows", "examples\example1\example1-monod-windows.dproj", "{32EF3B89-10C6-451E-90B9-868693B30D0F}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "helloworld-monod-windows", "examples\helloworld\helloworld-monod-windows.dproj", "{5EB161E7-0DB3-459F-86C5-32A84A3F4334}"
|
||||
EndProject
|
||||
Project("{3947E667-4C90-4C3A-BEB9-7148D6FE0D7C}") = "tetris-monod-windows", "examples\tetris\tetris-monod-windows.dproj", "{55D1FE26-E1FC-4787-9E22-D6385BA7C066}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Unittest|Any CPU = Unittest|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{32EF3B89-10C6-451E-90B9-868693B30D0F}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{32EF3B89-10C6-451E-90B9-868693B30D0F}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{32EF3B89-10C6-451E-90B9-868693B30D0F}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{32EF3B89-10C6-451E-90B9-868693B30D0F}.Release|Any CPU.Build.0 = Release|x64
|
||||
{32EF3B89-10C6-451E-90B9-868693B30D0F}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{32EF3B89-10C6-451E-90B9-868693B30D0F}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{45FB40CD-E99A-4C12-AC52-C13364412E09}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{45FB40CD-E99A-4C12-AC52-C13364412E09}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{45FB40CD-E99A-4C12-AC52-C13364412E09}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{45FB40CD-E99A-4C12-AC52-C13364412E09}.Release|Any CPU.Build.0 = Release|x64
|
||||
{45FB40CD-E99A-4C12-AC52-C13364412E09}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{45FB40CD-E99A-4C12-AC52-C13364412E09}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{55D1FE26-E1FC-4787-9E22-D6385BA7C066}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{55D1FE26-E1FC-4787-9E22-D6385BA7C066}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{55D1FE26-E1FC-4787-9E22-D6385BA7C066}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{55D1FE26-E1FC-4787-9E22-D6385BA7C066}.Release|Any CPU.Build.0 = Release|x64
|
||||
{55D1FE26-E1FC-4787-9E22-D6385BA7C066}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{55D1FE26-E1FC-4787-9E22-D6385BA7C066}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{5EB161E7-0DB3-459F-86C5-32A84A3F4334}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{5EB161E7-0DB3-459F-86C5-32A84A3F4334}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{5EB161E7-0DB3-459F-86C5-32A84A3F4334}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{5EB161E7-0DB3-459F-86C5-32A84A3F4334}.Release|Any CPU.Build.0 = Release|x64
|
||||
{5EB161E7-0DB3-459F-86C5-32A84A3F4334}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{5EB161E7-0DB3-459F-86C5-32A84A3F4334}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
{620F56F7-F6DE-45D2-955D-912A22EE728A}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{620F56F7-F6DE-45D2-955D-912A22EE728A}.Debug|Any CPU.Build.0 = Debug|x64
|
||||
{620F56F7-F6DE-45D2-955D-912A22EE728A}.Release|Any CPU.ActiveCfg = Release|x64
|
||||
{620F56F7-F6DE-45D2-955D-912A22EE728A}.Release|Any CPU.Build.0 = Release|x64
|
||||
{620F56F7-F6DE-45D2-955D-912A22EE728A}.Unittest|Any CPU.ActiveCfg = Unittest|x64
|
||||
{620F56F7-F6DE-45D2-955D-912A22EE728A}.Unittest|Any CPU.Build.0 = Unittest|x64
|
||||
EndGlobalSection
|
||||
EndGlobal
|
310
dlangui-msvc.sln
310
dlangui-msvc.sln
|
@ -1,310 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.28010.2041
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "dlangui", "dlangui-msvc.visualdproj", "{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}"
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "d3d", "examples\d3d\d3d-msvc.visualdproj", "{1C8C4726-B356-4533-90C7-88BDA875BF30}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "dmledit", "examples\dmledit\dmledit-msvc.visualdproj", "{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "example1", "examples\example1\example1-msvc.visualdproj", "{B1CA031C-C195-4938-8F3E-8BFF7DA68933}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "helloworld", "examples\helloworld\helloworld-msvc.visualdproj", "{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "tetris", "examples\tetris\tetris-msvc.visualdproj", "{954B6A84-1EEC-42B0-B215-2A17842B1101}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "dlangide", "..\dlangide\dlangide_msvc.visualdproj", "{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "spreadsheet", "examples\spreadsheet\spreadsheet-msvc.visualdproj", "{533AF38D-98E7-446F-9689-805BDFF3CE84}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "opengl", "examples\opengl\opengl-msvc.visualdproj", "{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "ircclient", "examples\ircclient\ircclient.visualdproj", "{20722E6B-CA27-467F-8BB8-07F80106B478}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "dminer", "examples\dminer\dminer.visualdproj", "{5F443F6A-6612-4404-B89E-D0D0205DC8E5}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "Failed to load dminer2", "examples\dminer2\dminer2.visualdproj", "{5F443F6A-6612-4404-B89E-D0D0205DC812}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5} = {52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
ConsoleDebug|Win32 = ConsoleDebug|Win32
|
||||
ConsoleDebug|x64 = ConsoleDebug|x64
|
||||
Debug|Win32 = Debug|Win32
|
||||
Debug|x64 = Debug|x64
|
||||
DSFMLDebug|Win32 = DSFMLDebug|Win32
|
||||
DSFMLDebug|x64 = DSFMLDebug|x64
|
||||
Release|Win32 = Release|Win32
|
||||
Release|x64 = Release|x64
|
||||
Unittest|Win32 = Unittest|Win32
|
||||
Unittest|x64 = Unittest|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Debug|x64.Build.0 = Debug|x64
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.DSFMLDebug|Win32.ActiveCfg = DSFMLDebug|Win32
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.DSFMLDebug|Win32.Build.0 = DSFMLDebug|Win32
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.DSFMLDebug|x64.ActiveCfg = DSFMLDebug|x64
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.DSFMLDebug|x64.Build.0 = DSFMLDebug|x64
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Release|Win32.Build.0 = Release|Win32
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Release|x64.ActiveCfg = Release|x64
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Release|x64.Build.0 = Release|x64
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Unittest|Win32.ActiveCfg = Unittest|Win32
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Unittest|Win32.Build.0 = Unittest|Win32
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Unittest|x64.ActiveCfg = Unittest|x64
|
||||
{52A2ABB9-2CF7-4D5F-AE8C-75B21F8585A5}.Unittest|x64.Build.0 = Unittest|x64
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Debug|x64.Build.0 = Debug|x64
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.DSFMLDebug|Win32.ActiveCfg = Debug|Win32
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.DSFMLDebug|Win32.Build.0 = Debug|Win32
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.DSFMLDebug|x64.ActiveCfg = Debug|x64
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.DSFMLDebug|x64.Build.0 = Debug|x64
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Release|Win32.Build.0 = Release|Win32
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Release|x64.ActiveCfg = Release|x64
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Release|x64.Build.0 = Release|x64
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Unittest|x64.ActiveCfg = Release|x64
|
||||
{1C8C4726-B356-4533-90C7-88BDA875BF30}.Unittest|x64.Build.0 = Release|x64
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Debug|x64.Build.0 = Debug|x64
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.DSFMLDebug|Win32.ActiveCfg = Debug|Win32
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.DSFMLDebug|Win32.Build.0 = Debug|Win32
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.DSFMLDebug|x64.ActiveCfg = Debug|x64
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.DSFMLDebug|x64.Build.0 = Debug|x64
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Release|Win32.Build.0 = Release|Win32
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Release|x64.ActiveCfg = Release|x64
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Release|x64.Build.0 = Release|x64
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Unittest|x64.ActiveCfg = Release|x64
|
||||
{79EA1B6E-D87E-4C45-A12D-7AD00C398F1F}.Unittest|x64.Build.0 = Release|x64
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Debug|x64.Build.0 = Debug|x64
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.DSFMLDebug|Win32.ActiveCfg = Debug|Win32
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.DSFMLDebug|Win32.Build.0 = Debug|Win32
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.DSFMLDebug|x64.ActiveCfg = Debug|x64
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.DSFMLDebug|x64.Build.0 = Debug|x64
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Release|Win32.Build.0 = Release|Win32
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Release|x64.ActiveCfg = Release|x64
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Release|x64.Build.0 = Release|x64
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Unittest|x64.ActiveCfg = Release|x64
|
||||
{B1CA031C-C195-4938-8F3E-8BFF7DA68933}.Unittest|x64.Build.0 = Release|x64
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Debug|x64.Build.0 = Debug|x64
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.DSFMLDebug|Win32.ActiveCfg = Debug|Win32
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.DSFMLDebug|Win32.Build.0 = Debug|Win32
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.DSFMLDebug|x64.ActiveCfg = Debug|x64
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.DSFMLDebug|x64.Build.0 = Debug|x64
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Release|Win32.Build.0 = Release|Win32
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Release|x64.ActiveCfg = Release|x64
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Release|x64.Build.0 = Release|x64
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Unittest|x64.ActiveCfg = Release|x64
|
||||
{9F5147FF-DB71-4CEC-BF2F-803143E42BCD}.Unittest|x64.Build.0 = Release|x64
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Debug|x64.Build.0 = Debug|x64
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.DSFMLDebug|Win32.ActiveCfg = DSFMLDebug|Win32
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.DSFMLDebug|Win32.Build.0 = DSFMLDebug|Win32
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.DSFMLDebug|x64.ActiveCfg = DSFMLDebug|x64
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.DSFMLDebug|x64.Build.0 = DSFMLDebug|x64
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Release|Win32.Build.0 = Release|Win32
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Release|x64.ActiveCfg = Release|x64
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Release|x64.Build.0 = Release|x64
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Unittest|x64.ActiveCfg = Release|x64
|
||||
{954B6A84-1EEC-42B0-B215-2A17842B1101}.Unittest|x64.Build.0 = Release|x64
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.DSFMLDebug|Win32.ActiveCfg = DSFMLDebug|Win32
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.DSFMLDebug|x64.ActiveCfg = DSFMLDebug|x64
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.Release|Win32.Build.0 = Release|Win32
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.Release|x64.ActiveCfg = Release|x64
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.Unittest|x64.ActiveCfg = Release|x64
|
||||
{DA4E9F22-21EB-4A71-AF1F-3B5BC370CBA0}.Unittest|x64.Build.0 = Release|x64
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Debug|x64.Build.0 = Debug|x64
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.DSFMLDebug|Win32.ActiveCfg = Debug|Win32
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.DSFMLDebug|Win32.Build.0 = Debug|Win32
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.DSFMLDebug|x64.ActiveCfg = Debug|x64
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.DSFMLDebug|x64.Build.0 = Debug|x64
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Release|Win32.Build.0 = Release|Win32
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Release|x64.ActiveCfg = Release|x64
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Unittest|x64.ActiveCfg = Release|x64
|
||||
{533AF38D-98E7-446F-9689-805BDFF3CE84}.Unittest|x64.Build.0 = Release|x64
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.DSFMLDebug|Win32.ActiveCfg = Debug|Win32
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.DSFMLDebug|Win32.Build.0 = Debug|Win32
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.DSFMLDebug|x64.ActiveCfg = Debug|x64
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.DSFMLDebug|x64.Build.0 = Debug|x64
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.Release|Win32.Build.0 = Release|Win32
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.Release|x64.ActiveCfg = Release|x64
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.Unittest|x64.ActiveCfg = Release|x64
|
||||
{29CF2CAC-2C0C-4F17-9292-E1706AC7EBBF}.Unittest|x64.Build.0 = Release|x64
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.DSFMLDebug|Win32.ActiveCfg = Debug|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.DSFMLDebug|Win32.Build.0 = Debug|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.DSFMLDebug|x64.ActiveCfg = Debug|x64
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.DSFMLDebug|x64.Build.0 = Debug|x64
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.Release|Win32.Build.0 = Release|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.Release|x64.ActiveCfg = Release|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.Unittest|x64.ActiveCfg = Release|Win32
|
||||
{20722E6B-CA27-467F-8BB8-07F80106B478}.Unittest|x64.Build.0 = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.DSFMLDebug|Win32.ActiveCfg = Debug|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.DSFMLDebug|x64.ActiveCfg = Debug|x64
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.Release|Win32.Build.0 = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.Release|x64.ActiveCfg = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.Unittest|x64.ActiveCfg = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC8E5}.Unittest|x64.Build.0 = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.ConsoleDebug|Win32.ActiveCfg = ConsoleDebug|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.ConsoleDebug|Win32.Build.0 = ConsoleDebug|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.ConsoleDebug|x64.ActiveCfg = ConsoleDebug|x64
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.ConsoleDebug|x64.Build.0 = ConsoleDebug|x64
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.DSFMLDebug|Win32.ActiveCfg = DSFMLDebug|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.DSFMLDebug|x64.ActiveCfg = DSFMLDebug|x64
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.Release|Win32.Build.0 = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.Release|x64.ActiveCfg = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.Unittest|Win32.ActiveCfg = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.Unittest|Win32.Build.0 = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.Unittest|x64.ActiveCfg = Release|Win32
|
||||
{5F443F6A-6612-4404-B89E-D0D0205DC812}.Unittest|x64.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {CC1A7323-1269-4893-BC1E-4D9EF670BBC5}
|
||||
EndGlobalSection
|
||||
GlobalSection(Performance) = preSolution
|
||||
HasPerformanceSessions = true
|
||||
EndGlobalSection
|
||||
EndGlobal
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue