Added new configurations to differentiate between cygwin-gcc and gnu-gcc.
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1034 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
e383589380
commit
3bdf75ff9b
3 changed files with 116 additions and 22 deletions
|
@ -5,9 +5,35 @@
|
|||
<Option title="Function" />
|
||||
<Option compiler="cygwin" />
|
||||
<Build>
|
||||
<Target title="Debug">
|
||||
<Option output="obj\Debug\Function" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Debug\" />
|
||||
<Target title="Debug_GCC">
|
||||
<Option output="obj\Debug_GCC\Function" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Debug_GCC\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-W" />
|
||||
<Add option="-g" />
|
||||
<Add directory="..\..\include\loki" />
|
||||
<Add directory="..\..\include" />
|
||||
</Compiler>
|
||||
</Target>
|
||||
<Target title="Release_GCC">
|
||||
<Option output="obj\Release_GCC\Function" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Release_GCC\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-fexpensive-optimizations" />
|
||||
<Add option="-Os" />
|
||||
<Add option="-O3" />
|
||||
<Add option="-W" />
|
||||
<Add directory="..\..\include" />
|
||||
<Add directory="..\..\include\loki" />
|
||||
</Compiler>
|
||||
</Target>
|
||||
<Target title="Debug_Cygwin">
|
||||
<Option output="obj\Debug_Cygwin\Function" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Debug_Cygwin\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="cygwin" />
|
||||
<Compiler>
|
||||
|
@ -17,9 +43,9 @@
|
|||
<Add directory="..\..\include" />
|
||||
</Compiler>
|
||||
</Target>
|
||||
<Target title="Release">
|
||||
<Option output="obj\Release\Function" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Release\" />
|
||||
<Target title="Release_Cygwin">
|
||||
<Option output="obj\Release_Cygwin\Function" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Release_Cygwin\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="cygwin" />
|
||||
<Compiler>
|
||||
|
|
|
@ -5,9 +5,43 @@
|
|||
<Option title="LevelMutex" />
|
||||
<Option compiler="cygwin" />
|
||||
<Build>
|
||||
<Target title="Debug">
|
||||
<Option output="obj\Debug\LevelMutex" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Debug\" />
|
||||
<Target title="Debug_GCC">
|
||||
<Option output="obj\Debug_GCC\LevelMutex" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Debug_GCC\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-W" />
|
||||
<Add option="-g" />
|
||||
<Add directory="..\..\include" />
|
||||
<Add directory="..\..\include\loki" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add library="..\..\lib\GCC\Loki_D.a" />
|
||||
<Add library="..\..\..\PThreads\lib\pthreadVC2.lib" />
|
||||
</Linker>
|
||||
</Target>
|
||||
<Target title="Release_GCC">
|
||||
<Option output="obj\Release_GCC\LevelMutex" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Release_GCC\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-fexpensive-optimizations" />
|
||||
<Add option="-Os" />
|
||||
<Add option="-O3" />
|
||||
<Add option="-W" />
|
||||
<Add directory="..\..\include" />
|
||||
<Add directory="..\..\include\loki" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add library="..\..\lib\GCC\Loki.a" />
|
||||
<Add library="..\..\..\PThreads\lib\pthreadVC2.lib" />
|
||||
</Linker>
|
||||
</Target>
|
||||
<Target title="Debug_Cygwin">
|
||||
<Option output="obj\Debug_Cygwin\LevelMutex" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Debug_Cygwin\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="cygwin" />
|
||||
<Compiler>
|
||||
|
@ -17,12 +51,13 @@
|
|||
<Add directory="..\..\include\loki" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add library="..\..\lib\Loki_D.a" />
|
||||
<Add library="..\..\lib\Cygwin\Loki_D.a" />
|
||||
<Add library="..\..\..\PThreads\lib\pthreadVC2.lib" />
|
||||
</Linker>
|
||||
</Target>
|
||||
<Target title="Release">
|
||||
<Option output="obj\Release\LevelMutex" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Release\" />
|
||||
<Target title="Release_Cygwin">
|
||||
<Option output="obj\Release_Cygwin\LevelMutex" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Release_Cygwin\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="cygwin" />
|
||||
<Compiler>
|
||||
|
@ -34,7 +69,8 @@
|
|||
<Add directory="..\..\include\loki" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add library="..\..\lib\Loki.a" />
|
||||
<Add library="..\..\lib\Cygwin\Loki.a" />
|
||||
<Add library="..\..\..\PThreads\lib\pthreadVC2.lib" />
|
||||
</Linker>
|
||||
</Target>
|
||||
</Build>
|
||||
|
|
|
@ -5,9 +5,41 @@
|
|||
<Option title="SafeFormat" />
|
||||
<Option compiler="cygwin" />
|
||||
<Build>
|
||||
<Target title="Debug">
|
||||
<Option output="bin\Debug\SafeFormat" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Debug\" />
|
||||
<Target title="Debug_GCC">
|
||||
<Option output="bin\Debug_GCC\SafeFormat" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Debug_GCC\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-W" />
|
||||
<Add option="-g" />
|
||||
<Add directory="..\..\include\loki" />
|
||||
<Add directory="..\..\include" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add library="..\..\lib\GCC\Loki_D.a" />
|
||||
</Linker>
|
||||
</Target>
|
||||
<Target title="Release_GCC">
|
||||
<Option output="bin\Release_GCC\SafeFormat" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Release_GCC\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-fexpensive-optimizations" />
|
||||
<Add option="-Os" />
|
||||
<Add option="-O3" />
|
||||
<Add option="-W" />
|
||||
<Add directory="..\..\include\loki" />
|
||||
<Add directory="..\..\include" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add library="..\..\lib\GCC\Loki.a" />
|
||||
</Linker>
|
||||
</Target>
|
||||
<Target title="Debug_Cygwin">
|
||||
<Option output="bin\Debug_Cygwin\SafeFormat" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Debug_Cygwin\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="cygwin" />
|
||||
<Compiler>
|
||||
|
@ -17,12 +49,12 @@
|
|||
<Add directory="..\..\include" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add library="..\..\lib\Loki_D.a" />
|
||||
<Add library="..\..\lib\Cygwin\Loki_D.a" />
|
||||
</Linker>
|
||||
</Target>
|
||||
<Target title="Release">
|
||||
<Option output="bin\Release\SafeFormat" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Release\" />
|
||||
<Target title="Release_Cygwin">
|
||||
<Option output="bin\Release_Cygwin\SafeFormat" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj\Release_Cygwin\" />
|
||||
<Option type="1" />
|
||||
<Option compiler="cygwin" />
|
||||
<Compiler>
|
||||
|
@ -34,7 +66,7 @@
|
|||
<Add directory="..\..\include" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add library="..\..\lib\Loki.a" />
|
||||
<Add library="..\..\lib\Cygwin\Loki.a" />
|
||||
</Linker>
|
||||
</Target>
|
||||
</Build>
|
||||
|
|
Loading…
Add table
Reference in a new issue