From: Rejean Loyer Date: Fri, 26 Oct 2012 00:22:44 +0000 (-0400) Subject: misc; modified all project (.epj) files to have the appropriate fast math option... X-Git-Tag: 0.44.02~54 X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?p=sdk;a=commitdiff_plain;h=90b0e4e57121e4223e2dfd02a24813b3e8db16bb misc; modified all project (.epj) files to have the appropriate fast math option set according to the optimize setting for all configs. --- diff --git a/Makefiles.epj b/Makefiles.epj index ec2f363..c5301eb 100755 --- a/Makefiles.epj +++ b/Makefiles.epj @@ -9,25 +9,6 @@ "ecere" ] }, - "Configurations" : [ - { - "Name" : "Debug", - "Options" : { - "Debug" : true, - "Optimization" : "None", - "PreprocessorDefinitions" : [ - "_DEBUG" - ] - } - }, - { - "Name" : "Release", - "Options" : { - "Debug" : false, - "Optimization" : "Speed" - } - } - ], "Files" : [ { "Folder" : "compiler", @@ -257,4 +238,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/compiler/ecc/ecc.epj b/compiler/ecc/ecc.epj index 354bbaa..12d184d 100644 --- a/compiler/ecc/ecc.epj +++ b/compiler/ecc/ecc.epj @@ -18,7 +18,8 @@ ], "Libraries" : [ "ecere" - ] + ], + "FastMath" : false } }, { @@ -33,6 +34,7 @@ "../../obj/$(PLATFORM)/bin", "../../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../../obj/$(PLATFORM)/bin/)" ] @@ -66,7 +68,8 @@ "LibraryDirs" : [ "../../ecere/obj/bootstrap.$(PLATFORM)", "../libec/obj/bootstrap.$(PLATFORM)" - ] + ], + "FastMath" : true }, "Platforms" : [ { @@ -114,4 +117,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/compiler/ecp/ecp.epj b/compiler/ecp/ecp.epj index a6a5a1e..3086cea 100644 --- a/compiler/ecp/ecp.epj +++ b/compiler/ecp/ecp.epj @@ -20,7 +20,8 @@ ], "Libraries" : [ "ecere" - ] + ], + "FastMath" : false } }, { @@ -37,6 +38,7 @@ "../../obj/$(PLATFORM)/bin", "../../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../../obj/$(PLATFORM)/bin/)" ] @@ -53,7 +55,8 @@ ], "Libraries" : [ "ecere" - ] + ], + "FastMath" : false } }, { @@ -71,7 +74,8 @@ "LibraryDirs" : [ "../libec/obj/bootstrap.$(PLATFORM)", "../../ecere/obj/bootstrap.$(PLATFORM)" - ] + ], + "FastMath" : true }, "Platforms" : [ { @@ -130,4 +134,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/compiler/ecs/CleanPo.epj b/compiler/ecs/CleanPo.epj index 49ecef8..9531f40 100644 --- a/compiler/ecs/CleanPo.epj +++ b/compiler/ecs/CleanPo.epj @@ -18,14 +18,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -36,4 +38,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/compiler/ecs/ecs.epj b/compiler/ecs/ecs.epj index a24e065..d88e0de 100644 --- a/compiler/ecs/ecs.epj +++ b/compiler/ecs/ecs.epj @@ -20,7 +20,8 @@ ], "Libraries" : [ "ecere" - ] + ], + "FastMath" : false } }, { @@ -37,6 +38,7 @@ "../../obj/$(PLATFORM)/bin", "../../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../../obj/$(PLATFORM)/bin/)" ] @@ -58,7 +60,8 @@ "LibraryDirs" : [ "../libec/obj/bootstrap.$(PLATFORM)", "../../ecere/obj/bootstrap.$(PLATFORM)" - ] + ], + "FastMath" : true }, "Platforms" : [ { @@ -106,4 +109,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/compiler/libec/ec.epj b/compiler/libec/ec.epj index 8b95e48..6548d51 100644 --- a/compiler/libec/ec.epj +++ b/compiler/libec/ec.epj @@ -19,7 +19,8 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -30,7 +31,8 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -47,6 +49,7 @@ "../../obj/$(PLATFORM)/bin", "../../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../../$(SODESTDIR))" ] @@ -64,7 +67,8 @@ "TargetFileName" : "ecStatic", "Libraries" : [ - ] + ], + "FastMath" : true } }, { @@ -83,7 +87,8 @@ "TargetFileName" : "ecBootstrap", "Libraries" : [ - ] + ], + "FastMath" : true } } ], @@ -154,4 +159,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/deps/freetype-2.3.12/freetype.epj b/deps/freetype-2.3.12/freetype.epj index b8bfc48..246ae63 100644 --- a/deps/freetype-2.3.12/freetype.epj +++ b/deps/freetype-2.3.12/freetype.epj @@ -23,14 +23,16 @@ "Name" : "Debug", "Options" : { "Warnings" : "All", - "Debug" : true + "Debug" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Warnings" : "None", - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } } ], diff --git a/deps/jpeg-6b/jpeg.epj b/deps/jpeg-6b/jpeg.epj index be87c01..c6f6aa6 100644 --- a/deps/jpeg-6b/jpeg.epj +++ b/deps/jpeg-6b/jpeg.epj @@ -14,14 +14,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Warnings" : "None", - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/deps/libffi-3.0.11/ffi.epj b/deps/libffi-3.0.11/ffi.epj index 71d84a0..1e72725 100644 --- a/deps/libffi-3.0.11/ffi.epj +++ b/deps/libffi-3.0.11/ffi.epj @@ -19,14 +19,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/deps/libpng-1.4.0/png.epj b/deps/libpng-1.4.0/png.epj index de8b43c..a913f7a 100644 --- a/deps/libpng-1.4.0/png.epj +++ b/deps/libpng-1.4.0/png.epj @@ -18,14 +18,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Warnings" : "None", - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/deps/libungif-4.1.1/libungif.epj b/deps/libungif-4.1.1/libungif.epj index 71108ab..cd67853 100644 --- a/deps/libungif-4.1.1/libungif.epj +++ b/deps/libungif-4.1.1/libungif.epj @@ -12,14 +12,16 @@ "Name" : "Debug", "Options" : { "Warnings" : "All", - "Debug" : true + "Debug" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Warnings" : "None", - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/deps/zlib/zlib.epj b/deps/zlib/zlib.epj index d92b473..5004843 100644 --- a/deps/zlib/zlib.epj +++ b/deps/zlib/zlib.epj @@ -12,14 +12,16 @@ "Name" : "Debug", "Options" : { "Warnings" : "All", - "Debug" : true + "Debug" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Warnings" : "None", - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/documentor/documentor.epj b/documentor/documentor.epj index c74a384..edf65d4 100644 --- a/documentor/documentor.epj +++ b/documentor/documentor.epj @@ -19,7 +19,8 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { @@ -32,6 +33,7 @@ "../obj/$(PLATFORM)/bin", "../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../obj/$(PLATFORM)/bin/)" ] @@ -45,7 +47,8 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } } ], @@ -111,4 +114,4 @@ }, "res/documentorIcon.png" ] -} \ No newline at end of file +} diff --git a/ear/cmd/ear.epj b/ear/cmd/ear.epj index 4f16d34..7a54f63 100644 --- a/ear/cmd/ear.epj +++ b/ear/cmd/ear.epj @@ -17,7 +17,8 @@ "Options" : { "Warnings" : "All", "Debug" : true, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } }, { @@ -31,6 +32,7 @@ "../../obj/$(PLATFORM)/bin", "../../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../../obj/$(PLATFORM)/bin/)" ] @@ -71,4 +73,4 @@ }, "../extract/obj/release.$(PLATFORM)/extract$(E)" ] -} \ No newline at end of file +} diff --git a/ear/extract/extract.epj b/ear/extract/extract.epj index 386d8a8..2579bdb 100644 --- a/ear/extract/extract.epj +++ b/ear/extract/extract.epj @@ -41,7 +41,8 @@ "Libraries" : [ "ecereVanilla", "z" - ] + ], + "FastMath" : false }, "Platforms" : [ { @@ -80,7 +81,8 @@ "Libraries" : [ "ecere" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { @@ -96,7 +98,8 @@ "ecereVanilla", "z" ], - "Compress" : true + "Compress" : true, + "FastMath" : false }, "Platforms" : [ { @@ -233,4 +236,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/ecere/ecere.epj b/ecere/ecere.epj index 2b91825..e35d008 100644 --- a/ecere/ecere.epj +++ b/ecere/ecere.epj @@ -126,7 +126,8 @@ "PreprocessorDefinitions" : [ "_DEBUG", "BUILDING_ECERE_COM" - ] + ], + "FastMath" : false } }, { @@ -140,7 +141,8 @@ "_DEBUG", "MEMINFO", "REDZONE=32" - ] + ], + "FastMath" : false } }, { @@ -153,7 +155,8 @@ "BUILDING_ECERE_COM", "MEMINFO", "REDZONE=256" - ] + ], + "FastMath" : true } }, { @@ -167,7 +170,8 @@ "ECERE_STATIC" ], "TargetType" : "StaticLibrary", - "TargetFileName" : "ecereStatic" + "TargetFileName" : "ecereStatic", + "FastMath" : true } }, { @@ -180,6 +184,7 @@ "PreprocessorDefinitions" : [ "BUILDING_ECERE_COM" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../$(SODESTDIR))" ] @@ -202,7 +207,8 @@ "z", "freetype" ], - "Compress" : true + "Compress" : true, + "FastMath" : false } }, { @@ -213,7 +219,8 @@ "PreprocessorDefinitions" : [ "BUILDING_ECERE_COM" ], - "Compress" : true + "Compress" : true, + "FastMath" : false } }, { @@ -229,7 +236,8 @@ "ECERE_NOTRUETYPE" ], "TargetType" : "StaticLibrary", - "TargetFileName" : "ecerePACS" + "TargetFileName" : "ecerePACS", + "FastMath" : false } }, { @@ -248,7 +256,8 @@ "TargetFileName" : "ecereBootstrap", "Libraries" : [ - ] + ], + "FastMath" : false } }, { @@ -264,6 +273,7 @@ ], "TargetType" : "StaticLibrary", "TargetFileName" : "ecereVanilla", + "FastMath" : false, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../obj/$(PLATFORM)/lib/)" ] @@ -279,7 +289,8 @@ "ECERE_NO3D" ], "TargetType" : "StaticLibrary", - "TargetFileName" : "ecereWSMS" + "TargetFileName" : "ecereWSMS", + "FastMath" : false }, "Platforms" : [ { @@ -308,7 +319,8 @@ "ECERE_NODINPUT" ], "TargetType" : "StaticLibrary", - "TargetFileName" : "ecereInstaller" + "TargetFileName" : "ecereInstaller", + "FastMath" : false } }, { @@ -324,7 +336,8 @@ "../deps/zlib", "../deps/freetype-2.3.12/include", "../deps/glext" - ] + ], + "FastMath" : false }, "Platforms" : [ { diff --git a/ecere/ecereCOM.epj b/ecere/ecereCOM.epj index c45d61e..702f339 100644 --- a/ecere/ecereCOM.epj +++ b/ecere/ecereCOM.epj @@ -34,7 +34,8 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -46,6 +47,7 @@ "Libraries" : [ ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../$(SODESTDIR))" ] @@ -66,7 +68,8 @@ "ObjectsDirectory" : "ecereCOMStatic", "Libraries" : [ - ] + ], + "FastMath" : true } } ], diff --git a/eda/drivers/oracle/EDAOracle.epj b/eda/drivers/oracle/EDAOracle.epj index ca651dd..17cda46 100644 --- a/eda/drivers/oracle/EDAOracle.epj +++ b/eda/drivers/oracle/EDAOracle.epj @@ -30,14 +30,16 @@ ], "LibraryDirs" : [ "C:/oraclexe/app/oracle/product/11.2.0/server/bin" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -48,4 +50,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/eda/drivers/sqlite/EDASQLite.epj b/eda/drivers/sqlite/EDASQLite.epj index 6323e64..44bb3ba 100644 --- a/eda/drivers/sqlite/EDASQLite.epj +++ b/eda/drivers/sqlite/EDASQLite.epj @@ -52,7 +52,8 @@ "Debug" : true, "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -64,6 +65,7 @@ "../../../obj/$(PLATFORM)/bin", "../../../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../../../$(SODESTDIR))" ] @@ -76,7 +78,8 @@ "MemoryGuard" : true, "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -88,7 +91,8 @@ "ECERE_STATIC" ], "TargetType" : "StaticLibrary", - "TargetFileName" : "EDASQLiteStatic" + "TargetFileName" : "EDASQLiteStatic", + "FastMath" : true } } ], diff --git a/eda/drivers/sqlite/SQLiteShellCmd.epj b/eda/drivers/sqlite/SQLiteShellCmd.epj index ec33623..6b191c4 100644 --- a/eda/drivers/sqlite/SQLiteShellCmd.epj +++ b/eda/drivers/sqlite/SQLiteShellCmd.epj @@ -37,14 +37,16 @@ "Debug" : true, "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "NoLineNumbers" : true, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/eda/drivers/sqliteCipher/EDASQLiteCipher.epj b/eda/drivers/sqliteCipher/EDASQLiteCipher.epj index 4b54583..d84175f 100644 --- a/eda/drivers/sqliteCipher/EDASQLiteCipher.epj +++ b/eda/drivers/sqliteCipher/EDASQLiteCipher.epj @@ -61,7 +61,8 @@ "Debug" : true, "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -73,6 +74,7 @@ "../../../obj/$(PLATFORM)/bin", "../../../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../../../$(SODESTDIR))" ] @@ -85,7 +87,8 @@ "MemoryGuard" : true, "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } } ], diff --git a/eda/drivers/sqliteCipher/SQLiteCipherShellCmd.epj b/eda/drivers/sqliteCipher/SQLiteCipherShellCmd.epj index b6ac5b2..3a21db4 100644 --- a/eda/drivers/sqliteCipher/SQLiteCipherShellCmd.epj +++ b/eda/drivers/sqliteCipher/SQLiteCipherShellCmd.epj @@ -53,14 +53,16 @@ "Debug" : true, "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "NoLineNumbers" : true, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/eda/libeda/EDA.epj b/eda/libeda/EDA.epj index 8108478..449f622 100644 --- a/eda/libeda/EDA.epj +++ b/eda/libeda/EDA.epj @@ -30,7 +30,8 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -41,7 +42,8 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -54,6 +56,7 @@ "../../obj/$(PLATFORM)/bin", "../../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../../$(SODESTDIR))" ] @@ -71,7 +74,8 @@ "TargetFileName" : "EDAStatic", "Libraries" : [ - ] + ], + "FastMath" : true } }, { @@ -87,7 +91,8 @@ "TargetFileName" : "EDAStatic", "Libraries" : [ - ] + ], + "FastMath" : false } } ], diff --git a/epj2make/epj2make.epj b/epj2make/epj2make.epj index 52bdd4a..4eb3ed9 100644 --- a/epj2make/epj2make.epj +++ b/epj2make/epj2make.epj @@ -33,7 +33,8 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false }, "Platforms" : [ { @@ -57,6 +58,7 @@ "../obj/$(PLATFORM)/bin", "../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../obj/$(PLATFORM)/bin/)" ] @@ -67,7 +69,8 @@ "Options" : { "Debug" : true, "MemoryGuard" : true, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } } ], diff --git a/extras/audio/EcereAudio.epj b/extras/audio/EcereAudio.epj index b96be56..35f4a73 100644 --- a/extras/audio/EcereAudio.epj +++ b/extras/audio/EcereAudio.epj @@ -41,7 +41,8 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -51,7 +52,8 @@ "Optimization" : "Speed", "IncludeDirs" : [ "../../deps/DirectX-9.0/include" - ] + ], + "FastMath" : true } } ], diff --git a/ide/ide.epj b/ide/ide.epj index a9ed145..2291d86 100755 --- a/ide/ide.epj +++ b/ide/ide.epj @@ -61,7 +61,8 @@ "Libraries" : [ "ecere" ], - "Console" : true + "Console" : true, + "FastMath" : false }, "Platforms" : [ { @@ -87,6 +88,7 @@ "../obj/$(PLATFORM)/bin", "../obj/$(PLATFORM)/lib" ], + "FastMath" : true, "PostbuildCommands" : [ "$(call cpq,$(TARGET),../obj/$(PLATFORM)/bin/)" ] @@ -130,7 +132,8 @@ "Libraries" : [ "ecere" ], - "Console" : true + "Console" : true, + "FastMath" : false }, "Platforms" : [ { @@ -162,7 +165,8 @@ "freetype", "harfbuzz" ], - "Console" : true + "Console" : true, + "FastMath" : true }, "Platforms" : [ { diff --git a/installer/Installer.epj b/installer/Installer.epj index 7aac815..a9dd153 100644 --- a/installer/Installer.epj +++ b/installer/Installer.epj @@ -40,7 +40,8 @@ ], "LibraryDirs" : [ "../ecere/obj/installer.win32" - ] + ], + "FastMath" : true } }, { @@ -58,7 +59,8 @@ "../ide/obj/resources.o", "ecere" ], - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/installer/coursework/Chapter 1 - Getting Started/Lab1.1/HelloWorld.epj b/installer/coursework/Chapter 1 - Getting Started/Lab1.1/HelloWorld.epj index 2aa2279..761bb8c 100644 --- a/installer/coursework/Chapter 1 - Getting Started/Lab1.1/HelloWorld.epj +++ b/installer/coursework/Chapter 1 - Getting Started/Lab1.1/HelloWorld.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -35,4 +37,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/installer/coursework/Chapter 1 - Getting Started/Lab1.2/HelloForm.epj b/installer/coursework/Chapter 1 - Getting Started/Lab1.2/HelloForm.epj index 23cb864..c38ac72 100644 --- a/installer/coursework/Chapter 1 - Getting Started/Lab1.2/HelloForm.epj +++ b/installer/coursework/Chapter 1 - Getting Started/Lab1.2/HelloForm.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -35,4 +37,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/installer/coursework/Chapter 2 - Variables and Data Types/Lab2.4/Lab2.epj b/installer/coursework/Chapter 2 - Variables and Data Types/Lab2.4/Lab2.epj index c106de5..03dd948 100644 --- a/installer/coursework/Chapter 2 - Variables and Data Types/Lab2.4/Lab2.epj +++ b/installer/coursework/Chapter 2 - Variables and Data Types/Lab2.4/Lab2.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -36,4 +38,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/installer/coursework/Chapter 2 - Variables and Data Types/Lab2.5/VariablesApp.epj b/installer/coursework/Chapter 2 - Variables and Data Types/Lab2.5/VariablesApp.epj index 80f018f..3103c10 100644 --- a/installer/coursework/Chapter 2 - Variables and Data Types/Lab2.5/VariablesApp.epj +++ b/installer/coursework/Chapter 2 - Variables and Data Types/Lab2.5/VariablesApp.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -36,4 +38,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/installer/coursework/Chapter 3 - Operators/Lab3/Lab3.epj b/installer/coursework/Chapter 3 - Operators/Lab3/Lab3.epj index 451f5c4..0c7ad44 100644 --- a/installer/coursework/Chapter 3 - Operators/Lab3/Lab3.epj +++ b/installer/coursework/Chapter 3 - Operators/Lab3/Lab3.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -36,4 +38,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/installer/coursework/Chapter 4 - Flow Control/Lab4/Lab4.epj b/installer/coursework/Chapter 4 - Flow Control/Lab4/Lab4.epj index 8bb1db8..65d6344 100644 --- a/installer/coursework/Chapter 4 - Flow Control/Lab4/Lab4.epj +++ b/installer/coursework/Chapter 4 - Flow Control/Lab4/Lab4.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -36,4 +38,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/installer/coursework/Chapter 5 - Structures and Enumerations/Lab5/colors/lab5colors.epj b/installer/coursework/Chapter 5 - Structures and Enumerations/Lab5/colors/lab5colors.epj index 591111f..1f0df31 100644 --- a/installer/coursework/Chapter 5 - Structures and Enumerations/Lab5/colors/lab5colors.epj +++ b/installer/coursework/Chapter 5 - Structures and Enumerations/Lab5/colors/lab5colors.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -36,4 +38,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/installer/coursework/Chapter 5 - Structures and Enumerations/Lab5/vectors/lab5vectors.epj b/installer/coursework/Chapter 5 - Structures and Enumerations/Lab5/vectors/lab5vectors.epj index f3414d7..7bc0492 100644 --- a/installer/coursework/Chapter 5 - Structures and Enumerations/Lab5/vectors/lab5vectors.epj +++ b/installer/coursework/Chapter 5 - Structures and Enumerations/Lab5/vectors/lab5vectors.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -36,4 +38,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/installer/coursework/Chapter 6 - Classes, Methods and Instances/Lab6/lab6.epj b/installer/coursework/Chapter 6 - Classes, Methods and Instances/Lab6/lab6.epj index 3d3651a..5e79245 100644 --- a/installer/coursework/Chapter 6 - Classes, Methods and Instances/Lab6/lab6.epj +++ b/installer/coursework/Chapter 6 - Classes, Methods and Instances/Lab6/lab6.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -36,4 +38,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/samples/3D/Animate3DS/Animate3DS.epj b/samples/3D/Animate3DS/Animate3DS.epj index 33fae6e..db99c1d 100644 --- a/samples/3D/Animate3DS/Animate3DS.epj +++ b/samples/3D/Animate3DS/Animate3DS.epj @@ -11,7 +11,8 @@ { "Name" : "Debug", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } } ], diff --git a/samples/3D/ColorSpheres/colorSpheres.epj b/samples/3D/ColorSpheres/colorSpheres.epj index ed126aa..aaf1235 100644 --- a/samples/3D/ColorSpheres/colorSpheres.epj +++ b/samples/3D/ColorSpheres/colorSpheres.epj @@ -17,7 +17,8 @@ ], "Libraries" : [ "ecere" - ] + ], + "FastMath" : false } }, { @@ -48,7 +49,8 @@ "LibraryDirs" : [ "/v3/tight/release" ], - "Console" : false + "Console" : false, + "FastMath" : true } }, { @@ -58,7 +60,8 @@ "Libraries" : [ "ecere" ], - "Console" : false + "Console" : false, + "FastMath" : true } }, { @@ -89,7 +92,8 @@ "LibraryDirs" : [ "/v3/tight/debug" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { @@ -103,7 +107,8 @@ "Libraries" : [ "ecere" ], - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/3D/HiraganaCube/HiraganaCube.epj b/samples/3D/HiraganaCube/HiraganaCube.epj index 099e15a..24e6e93 100644 --- a/samples/3D/HiraganaCube/HiraganaCube.epj +++ b/samples/3D/HiraganaCube/HiraganaCube.epj @@ -17,7 +17,8 @@ ], "Libraries" : [ "ecere" - ] + ], + "FastMath" : false } }, { @@ -47,7 +48,8 @@ ], "LibraryDirs" : [ "../../ecere/obj/tight" - ] + ], + "FastMath" : true } }, { @@ -56,7 +58,8 @@ "Optimization" : "Speed", "Libraries" : [ "ecere" - ] + ], + "FastMath" : true } }, { @@ -87,7 +90,8 @@ "LibraryDirs" : [ "../../ecere/obj/tight" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { @@ -100,7 +104,8 @@ "Libraries" : [ "ecere" ], - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/3D/ModelViewer/eModel.epj b/samples/3D/ModelViewer/eModel.epj index 4155e0b..27c80ee 100644 --- a/samples/3D/ModelViewer/eModel.epj +++ b/samples/3D/ModelViewer/eModel.epj @@ -15,13 +15,15 @@ { "Name" : "Debug", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/3D/OpenGL/OpenGL.epj b/samples/3D/OpenGL/OpenGL.epj index 67fdf50..99b77d1 100644 --- a/samples/3D/OpenGL/OpenGL.epj +++ b/samples/3D/OpenGL/OpenGL.epj @@ -42,13 +42,15 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/3D/Test3D/Test3D.epj b/samples/3D/Test3D/Test3D.epj index 383ea10..308358f 100644 --- a/samples/3D/Test3D/Test3D.epj +++ b/samples/3D/Test3D/Test3D.epj @@ -17,13 +17,15 @@ { "Name" : "Debug", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/3D/TransCube/transCube.epj b/samples/3D/TransCube/transCube.epj index dbeb2e5..b6e9a2a 100644 --- a/samples/3D/TransCube/transCube.epj +++ b/samples/3D/TransCube/transCube.epj @@ -17,7 +17,8 @@ { "Name" : "Debug", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } } ], diff --git a/samples/3D/VertexColorTest/VertexColorTest.epj b/samples/3D/VertexColorTest/VertexColorTest.epj index c513e03..7dac7bb 100644 --- a/samples/3D/VertexColorTest/VertexColorTest.epj +++ b/samples/3D/VertexColorTest/VertexColorTest.epj @@ -17,13 +17,15 @@ { "Name" : "Debug", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/3D/cube2/cube2.epj b/samples/3D/cube2/cube2.epj index fb7ef40..de012c1 100644 --- a/samples/3D/cube2/cube2.epj +++ b/samples/3D/cube2/cube2.epj @@ -18,7 +18,8 @@ ], "Libraries" : [ "ecere" - ] + ], + "FastMath" : false } }, { @@ -51,7 +52,8 @@ "LibraryDirs" : [ "/v3/tight/release" ], - "Console" : false + "Console" : false, + "FastMath" : true } }, { @@ -63,7 +65,8 @@ "Libraries" : [ "ecere" ], - "Console" : false + "Console" : false, + "FastMath" : true } }, { @@ -96,7 +99,8 @@ "LibraryDirs" : [ "/v3/tight/debug" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { @@ -111,7 +115,8 @@ "Libraries" : [ "ecere" ], - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/3D/glTriangle/glTriangle.epj b/samples/3D/glTriangle/glTriangle.epj index adab9fa..5c1fcb3 100644 --- a/samples/3D/glTriangle/glTriangle.epj +++ b/samples/3D/glTriangle/glTriangle.epj @@ -35,14 +35,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/3D/hello3D/hello3D.epj b/samples/3D/hello3D/hello3D.epj index 3e1ab74..8409ce7 100644 --- a/samples/3D/hello3D/hello3D.epj +++ b/samples/3D/hello3D/hello3D.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/3D/rayTracedMandelbulb/mandelbulb.epj b/samples/3D/rayTracedMandelbulb/mandelbulb.epj index 1f006ff..5d4e45c 100644 --- a/samples/3D/rayTracedMandelbulb/mandelbulb.epj +++ b/samples/3D/rayTracedMandelbulb/mandelbulb.epj @@ -19,14 +19,16 @@ "Options" : { "Debug" : true, "Optimization" : "None", - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/3D/spriteBalls/balls.epj b/samples/3D/spriteBalls/balls.epj index 59b078f..6b7f62b 100644 --- a/samples/3D/spriteBalls/balls.epj +++ b/samples/3D/spriteBalls/balls.epj @@ -14,7 +14,8 @@ { "Name" : "Debug", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } } ], diff --git a/samples/3D/terrainCameraDemo/cameraDemo.epj b/samples/3D/terrainCameraDemo/cameraDemo.epj index fde4e97..dd6c0a2 100644 --- a/samples/3D/terrainCameraDemo/cameraDemo.epj +++ b/samples/3D/terrainCameraDemo/cameraDemo.epj @@ -19,13 +19,15 @@ { "Name" : "Debug", "Options" : { - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/audio/DirectBufferPlayer/WavPlayer.epj b/samples/audio/DirectBufferPlayer/WavPlayer.epj index 8844392..bf0b252 100644 --- a/samples/audio/DirectBufferPlayer/WavPlayer.epj +++ b/samples/audio/DirectBufferPlayer/WavPlayer.epj @@ -38,14 +38,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/audio/Piano/Piano.epj b/samples/audio/Piano/Piano.epj index e882c09..0a6f35c 100644 --- a/samples/audio/Piano/Piano.epj +++ b/samples/audio/Piano/Piano.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/audio/PlaySound/PlaySound.epj b/samples/audio/PlaySound/PlaySound.epj index c33efed..362d25d 100644 --- a/samples/audio/PlaySound/PlaySound.epj +++ b/samples/audio/PlaySound/PlaySound.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/db/EDATest/EDATest.epj b/samples/db/EDATest/EDATest.epj index c1ea0b4..881ff00 100644 --- a/samples/db/EDATest/EDATest.epj +++ b/samples/db/EDATest/EDATest.epj @@ -17,14 +17,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "DefaultNameSpace" : "eda" + "DefaultNameSpace" : "eda", + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Optimization" : "Speed", - "DefaultNameSpace" : "eda" + "DefaultNameSpace" : "eda", + "FastMath" : true } }, { @@ -34,7 +36,8 @@ "MemoryGuard" : true, "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } } ], diff --git a/samples/db/MedDB/med.epj b/samples/db/MedDB/med.epj index f450151..818660e 100644 --- a/samples/db/MedDB/med.epj +++ b/samples/db/MedDB/med.epj @@ -19,13 +19,15 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } }, { @@ -36,7 +38,8 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/db/MovieCollection/MovieCollection.epj b/samples/db/MovieCollection/MovieCollection.epj index a3d41b0..7a106e5 100644 --- a/samples/db/MovieCollection/MovieCollection.epj +++ b/samples/db/MovieCollection/MovieCollection.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } }, { @@ -33,7 +35,8 @@ "Options" : { "Debug" : true, "MemoryGuard" : true, - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/eC/FindPrime/PrimeTest.epj b/samples/eC/FindPrime/PrimeTest.epj index 58e6fc1..17bf346 100644 --- a/samples/eC/FindPrime/PrimeTest.epj +++ b/samples/eC/FindPrime/PrimeTest.epj @@ -18,14 +18,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/eC/HelloWorld/HelloWorld.epj b/samples/eC/HelloWorld/HelloWorld.epj index 325c5a5..ef09fd2 100644 --- a/samples/eC/HelloWorld/HelloWorld.epj +++ b/samples/eC/HelloWorld/HelloWorld.epj @@ -22,7 +22,8 @@ "MemoryGuard" : true, "Libraries" : [ "ecere" - ] + ], + "FastMath" : false } } ], diff --git a/samples/eC/ampheck/ampheck.epj b/samples/eC/ampheck/ampheck.epj index c66b506..912b6b8 100644 --- a/samples/eC/ampheck/ampheck.epj +++ b/samples/eC/ampheck/ampheck.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/eC/ecas/ecas.epj b/samples/eC/ecas/ecas.epj index 14c47cc..539127a 100644 --- a/samples/eC/ecas/ecas.epj +++ b/samples/eC/ecas/ecas.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/eC/fibonacci/fibo.epj b/samples/eC/fibonacci/fibo.epj index ce7f4c1..073a8a2 100644 --- a/samples/eC/fibonacci/fibo.epj +++ b/samples/eC/fibonacci/fibo.epj @@ -22,14 +22,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/eC/neural/neural.epj b/samples/eC/neural/neural.epj index 936451f..0fac27a 100644 --- a/samples/eC/neural/neural.epj +++ b/samples/eC/neural/neural.epj @@ -22,7 +22,8 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { @@ -30,7 +31,8 @@ "Options" : { "Debug" : false, "Optimization" : "Speed", - "Console" : false + "Console" : false, + "FastMath" : true } } ], diff --git a/samples/eC/staticLink/staticLink.epj b/samples/eC/staticLink/staticLink.epj index 887ea82..060dba9 100644 --- a/samples/eC/staticLink/staticLink.epj +++ b/samples/eC/staticLink/staticLink.epj @@ -17,7 +17,8 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -26,7 +27,8 @@ "Debug" : false, "MemoryGuard" : true, "NoLineNumbers" : true, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } }, { @@ -41,7 +43,8 @@ "Libraries" : [ "ecereVanilla" ], - "Compress" : true + "Compress" : true, + "FastMath" : false }, "Platforms" : [ { diff --git a/samples/games/blokus/blokus.epj b/samples/games/blokus/blokus.epj index d66e409..da84c1c 100644 --- a/samples/games/blokus/blokus.epj +++ b/samples/games/blokus/blokus.epj @@ -17,14 +17,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } }, { @@ -35,7 +37,8 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/games/bomb/bomb.epj b/samples/games/bomb/bomb.epj index f59a4d5..2639c56 100644 --- a/samples/games/bomb/bomb.epj +++ b/samples/games/bomb/bomb.epj @@ -18,7 +18,8 @@ "Debug" : true, "MemoryGuard" : false, "Optimization" : "None", - "Console" : false + "Console" : false, + "FastMath" : false } }, { @@ -27,7 +28,8 @@ "Debug" : true, "MemoryGuard" : true, "Optimization" : "None", - "Console" : true + "Console" : true, + "FastMath" : false } }, { @@ -36,7 +38,8 @@ "Debug" : false, "MemoryGuard" : false, "Optimization" : "Speed", - "Console" : false + "Console" : false, + "FastMath" : true } } ], diff --git a/samples/games/brainstonz/brainstonz.epj b/samples/games/brainstonz/brainstonz.epj index 467e84d..fb84c41 100644 --- a/samples/games/brainstonz/brainstonz.epj +++ b/samples/games/brainstonz/brainstonz.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/games/cards/poker/poker.epj b/samples/games/cards/poker/poker.epj index 0496593..11b203f 100644 --- a/samples/games/cards/poker/poker.epj +++ b/samples/games/cards/poker/poker.epj @@ -16,7 +16,8 @@ "Options" : { "Debug" : true, "Profile" : false, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } } ], diff --git a/samples/games/cards/ruff/ruff.epj b/samples/games/cards/ruff/ruff.epj index 463465c..c583c34 100644 --- a/samples/games/cards/ruff/ruff.epj +++ b/samples/games/cards/ruff/ruff.epj @@ -13,7 +13,8 @@ { "Name" : "Default", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } } ], diff --git a/samples/games/cards/tongIts/tongIts.epj b/samples/games/cards/tongIts/tongIts.epj index badea5d..1bd37ca 100644 --- a/samples/games/cards/tongIts/tongIts.epj +++ b/samples/games/cards/tongIts/tongIts.epj @@ -16,7 +16,8 @@ "Options" : { "Debug" : true, "Profile" : false, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } } ], diff --git a/samples/games/othello/Othello.epj b/samples/games/othello/Othello.epj index 5391464..b48d785 100644 --- a/samples/games/othello/Othello.epj +++ b/samples/games/othello/Othello.epj @@ -13,7 +13,8 @@ { "Name" : "Default", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } } ], diff --git a/samples/games/scrabble/scrabble.epj b/samples/games/scrabble/scrabble.epj index c4ae293..37a761e 100644 --- a/samples/games/scrabble/scrabble.epj +++ b/samples/games/scrabble/scrabble.epj @@ -18,7 +18,8 @@ "Debug" : true, "MemoryGuard" : false, "Optimization" : "None", - "Console" : true + "Console" : true, + "FastMath" : false } }, { @@ -27,7 +28,8 @@ "Debug" : false, "MemoryGuard" : false, "Optimization" : "Speed", - "Console" : false + "Console" : false, + "FastMath" : true } }, { @@ -36,7 +38,8 @@ "Debug" : true, "MemoryGuard" : true, "Optimization" : "None", - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/games/tetris/tetris.epj b/samples/games/tetris/tetris.epj index 9a5ef35..2b9d104 100644 --- a/samples/games/tetris/tetris.epj +++ b/samples/games/tetris/tetris.epj @@ -18,7 +18,8 @@ "Options" : { "Debug" : true, "MemoryGuard" : false, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } }, { @@ -26,7 +27,8 @@ "Options" : { "Debug" : false, "MemoryGuard" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } }, { @@ -34,7 +36,8 @@ "Options" : { "Debug" : true, "MemoryGuard" : true, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } } ], diff --git a/samples/guiAndGfx/Controls/controls.epj b/samples/guiAndGfx/Controls/controls.epj index e24a0b4..9022ea3 100644 --- a/samples/guiAndGfx/Controls/controls.epj +++ b/samples/guiAndGfx/Controls/controls.epj @@ -6,7 +6,6 @@ "MemoryGuard" : false, "Profile" : false, "Optimization" : "Speed", - "StrictNameSpaces" : false, "TargetType" : "Executable", "TargetFileName" : "Controls", "Libraries" : [ @@ -17,13 +16,15 @@ { "Name" : "Debug", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } }, { "Name" : "MemoryGuard", "Options" : { - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/guiAndGfx/DataControls/DataControls.epj b/samples/guiAndGfx/DataControls/DataControls.epj index 9180156..94e3f19 100644 --- a/samples/guiAndGfx/DataControls/DataControls.epj +++ b/samples/guiAndGfx/DataControls/DataControls.epj @@ -21,14 +21,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/FlagsDropBox/FlagsDropBox.epj b/samples/guiAndGfx/FlagsDropBox/FlagsDropBox.epj index 5478bfb..83812df 100644 --- a/samples/guiAndGfx/FlagsDropBox/FlagsDropBox.epj +++ b/samples/guiAndGfx/FlagsDropBox/FlagsDropBox.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/HelloForm/helloForm.epj b/samples/guiAndGfx/HelloForm/helloForm.epj index d9932fe..07266b4 100644 --- a/samples/guiAndGfx/HelloForm/helloForm.epj +++ b/samples/guiAndGfx/HelloForm/helloForm.epj @@ -14,7 +14,8 @@ { "Name" : "Debug", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } }, { @@ -22,7 +23,8 @@ "Options" : { "Debug" : true, "MemoryGuard" : true, - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/guiAndGfx/LinkLabel/LinkLabel.epj b/samples/guiAndGfx/LinkLabel/LinkLabel.epj index 392931e..7c0100a 100644 --- a/samples/guiAndGfx/LinkLabel/LinkLabel.epj +++ b/samples/guiAndGfx/LinkLabel/LinkLabel.epj @@ -22,14 +22,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/bitmapsAndKB/Bitmap/bitmap.epj b/samples/guiAndGfx/bitmapsAndKB/Bitmap/bitmap.epj index cb61258..51b5cd0 100644 --- a/samples/guiAndGfx/bitmapsAndKB/Bitmap/bitmap.epj +++ b/samples/guiAndGfx/bitmapsAndKB/Bitmap/bitmap.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/bitmapsAndKB/KBController/controller.epj b/samples/guiAndGfx/bitmapsAndKB/KBController/controller.epj index 7f99b19..9b880bc 100644 --- a/samples/guiAndGfx/bitmapsAndKB/KBController/controller.epj +++ b/samples/guiAndGfx/bitmapsAndKB/KBController/controller.epj @@ -18,14 +18,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/bitmapsAndKB/KBOnKeyHit/OnKeyHit.epj b/samples/guiAndGfx/bitmapsAndKB/KBOnKeyHit/OnKeyHit.epj index 005cfda..bad13b2 100644 --- a/samples/guiAndGfx/bitmapsAndKB/KBOnKeyHit/OnKeyHit.epj +++ b/samples/guiAndGfx/bitmapsAndKB/KBOnKeyHit/OnKeyHit.epj @@ -18,14 +18,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/bitmapsAndKB/KBState/KBState.epj b/samples/guiAndGfx/bitmapsAndKB/KBState/KBState.epj index df50bc0..b65c393 100644 --- a/samples/guiAndGfx/bitmapsAndKB/KBState/KBState.epj +++ b/samples/guiAndGfx/bitmapsAndKB/KBState/KBState.epj @@ -18,14 +18,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/bitmapsAndKB/Objects/objects.epj b/samples/guiAndGfx/bitmapsAndKB/Objects/objects.epj index dac8828..6b448a3 100644 --- a/samples/guiAndGfx/bitmapsAndKB/Objects/objects.epj +++ b/samples/guiAndGfx/bitmapsAndKB/Objects/objects.epj @@ -18,14 +18,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/childWindows/start.epj b/samples/guiAndGfx/childWindows/start.epj index 4b8e85a..082ff66 100644 --- a/samples/guiAndGfx/childWindows/start.epj +++ b/samples/guiAndGfx/childWindows/start.epj @@ -18,14 +18,16 @@ "Name" : "Debug", "Options" : { "Debug" : true, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/clock/clock.epj b/samples/guiAndGfx/clock/clock.epj index b1bc2db..725b8ee 100644 --- a/samples/guiAndGfx/clock/clock.epj +++ b/samples/guiAndGfx/clock/clock.epj @@ -21,14 +21,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/curvyweb/curvyweb.epj b/samples/guiAndGfx/curvyweb/curvyweb.epj index 8170ead..a5e31b1 100644 --- a/samples/guiAndGfx/curvyweb/curvyweb.epj +++ b/samples/guiAndGfx/curvyweb/curvyweb.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/dataBoxes/dataBoxes.epj b/samples/guiAndGfx/dataBoxes/dataBoxes.epj index 6821112..f575d8b 100644 --- a/samples/guiAndGfx/dataBoxes/dataBoxes.epj +++ b/samples/guiAndGfx/dataBoxes/dataBoxes.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/disablingMovingControls/disabled_test.epj b/samples/guiAndGfx/disablingMovingControls/disabled_test.epj index d207e35..8c35b07 100644 --- a/samples/guiAndGfx/disablingMovingControls/disabled_test.epj +++ b/samples/guiAndGfx/disablingMovingControls/disabled_test.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/eNotepad/eNotepad.epj b/samples/guiAndGfx/eNotepad/eNotepad.epj index ffd7151..c3db380 100644 --- a/samples/guiAndGfx/eNotepad/eNotepad.epj +++ b/samples/guiAndGfx/eNotepad/eNotepad.epj @@ -16,7 +16,8 @@ "Options" : { "Debug" : true, "Profile" : false, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } } ], diff --git a/samples/guiAndGfx/fliPlay/fliPlay.epj b/samples/guiAndGfx/fliPlay/fliPlay.epj index 6f88ccd..f1695ed 100644 --- a/samples/guiAndGfx/fliPlay/fliPlay.epj +++ b/samples/guiAndGfx/fliPlay/fliPlay.epj @@ -16,7 +16,8 @@ "Options" : { "Debug" : true, "Profile" : false, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } } ], diff --git a/samples/guiAndGfx/floodFill/ePaint.epj b/samples/guiAndGfx/floodFill/ePaint.epj index 13ce102..2d61f5b 100644 --- a/samples/guiAndGfx/floodFill/ePaint.epj +++ b/samples/guiAndGfx/floodFill/ePaint.epj @@ -18,14 +18,16 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/mdiSample/mdiSample.epj b/samples/guiAndGfx/mdiSample/mdiSample.epj index 1bcabe9..0a221c5 100644 --- a/samples/guiAndGfx/mdiSample/mdiSample.epj +++ b/samples/guiAndGfx/mdiSample/mdiSample.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/openrider/openrider.epj b/samples/guiAndGfx/openrider/openrider.epj index 5d8ae6e..4b47a1f 100644 --- a/samples/guiAndGfx/openrider/openrider.epj +++ b/samples/guiAndGfx/openrider/openrider.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/pictureRotateAlpha/pictureRotate.epj b/samples/guiAndGfx/pictureRotateAlpha/pictureRotate.epj index 75eb72f..f01eb71 100644 --- a/samples/guiAndGfx/pictureRotateAlpha/pictureRotate.epj +++ b/samples/guiAndGfx/pictureRotateAlpha/pictureRotate.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], @@ -35,4 +37,4 @@ "Resources" : [ ] -} \ No newline at end of file +} diff --git a/samples/guiAndGfx/reminder/Reminder.epj b/samples/guiAndGfx/reminder/Reminder.epj index 8209892..8288152 100644 --- a/samples/guiAndGfx/reminder/Reminder.epj +++ b/samples/guiAndGfx/reminder/Reminder.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/replace/replace.epj b/samples/guiAndGfx/replace/replace.epj index 46db5f8..67d5a11 100644 --- a/samples/guiAndGfx/replace/replace.epj +++ b/samples/guiAndGfx/replace/replace.epj @@ -16,7 +16,8 @@ "Options" : { "Debug" : true, "Profile" : false, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } } ], diff --git a/samples/guiAndGfx/screenShot/Shot.epj b/samples/guiAndGfx/screenShot/Shot.epj index 9d12548..0e13daa 100644 --- a/samples/guiAndGfx/screenShot/Shot.epj +++ b/samples/guiAndGfx/screenShot/Shot.epj @@ -21,14 +21,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/skinning/SkinProject.epj b/samples/guiAndGfx/skinning/SkinProject.epj index 4abc808..a9d1921 100644 --- a/samples/guiAndGfx/skinning/SkinProject.epj +++ b/samples/guiAndGfx/skinning/SkinProject.epj @@ -17,13 +17,15 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } }, { @@ -33,7 +35,8 @@ "MemoryGuard" : true, "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } } ], diff --git a/samples/guiAndGfx/snow/snow.epj b/samples/guiAndGfx/snow/snow.epj index f9872e2..f019642 100644 --- a/samples/guiAndGfx/snow/snow.epj +++ b/samples/guiAndGfx/snow/snow.epj @@ -16,14 +16,16 @@ "Options" : { "Debug" : true, "Profile" : false, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : true } }, { "Name" : "Debug", "Options" : { "Debug" : true, - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/guiAndGfx/tabControl/tabs.epj b/samples/guiAndGfx/tabControl/tabs.epj index e50624f..ac42a8c 100644 --- a/samples/guiAndGfx/tabControl/tabs.epj +++ b/samples/guiAndGfx/tabControl/tabs.epj @@ -21,14 +21,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/textScroller/Scroll.epj b/samples/guiAndGfx/textScroller/Scroll.epj index 9137358..3982c6a 100644 --- a/samples/guiAndGfx/textScroller/Scroll.epj +++ b/samples/guiAndGfx/textScroller/Scroll.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/toolBars/toolBars.epj b/samples/guiAndGfx/toolBars/toolBars.epj index a094e91..d4a9710 100644 --- a/samples/guiAndGfx/toolBars/toolBars.epj +++ b/samples/guiAndGfx/toolBars/toolBars.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/guiAndGfx/toolTips/Tooltips.epj b/samples/guiAndGfx/toolTips/Tooltips.epj index a53f74c..8a1a3ab 100644 --- a/samples/guiAndGfx/toolTips/Tooltips.epj +++ b/samples/guiAndGfx/toolTips/Tooltips.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } }, { @@ -34,7 +36,8 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } } ], diff --git a/samples/guiAndGfx/treeView/treeView.epj b/samples/guiAndGfx/treeView/treeView.epj index de6cf50..bc64a55 100644 --- a/samples/guiAndGfx/treeView/treeView.epj +++ b/samples/guiAndGfx/treeView/treeView.epj @@ -16,7 +16,8 @@ "Options" : { "Debug" : true, "Profile" : false, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } } ], diff --git a/samples/misc/licensing/licensing.epj b/samples/misc/licensing/licensing.epj index 2214f30..265bf32 100644 --- a/samples/misc/licensing/licensing.epj +++ b/samples/misc/licensing/licensing.epj @@ -23,7 +23,8 @@ "Options" : { "PreprocessorDefinitions" : [ "SAMPLE_V2" - ] + ], + "FastMath" : false } } ], diff --git a/samples/net/DCOMSample/Server.epj b/samples/net/DCOMSample/Server.epj index 5a6d067..3fa881d 100644 --- a/samples/net/DCOMSample/Server.epj +++ b/samples/net/DCOMSample/Server.epj @@ -22,14 +22,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/net/SocketSample/SocketSample.epj b/samples/net/SocketSample/SocketSample.epj index f2c25a2..cf4cd33 100644 --- a/samples/net/SocketSample/SocketSample.epj +++ b/samples/net/SocketSample/SocketSample.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/net/UDPSample/UDPTest.epj b/samples/net/UDPSample/UDPTest.epj index 75d1593..292d97f 100644 --- a/samples/net/UDPSample/UDPTest.epj +++ b/samples/net/UDPSample/UDPTest.epj @@ -21,7 +21,8 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { @@ -29,7 +30,8 @@ "Options" : { "Debug" : false, "MemoryGuard" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } }, { @@ -40,7 +42,8 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } } ], diff --git a/samples/net/XMLSample/XMLSample.epj b/samples/net/XMLSample/XMLSample.epj index 656881b..f8970f5 100644 --- a/samples/net/XMLSample/XMLSample.epj +++ b/samples/net/XMLSample/XMLSample.epj @@ -17,14 +17,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/net/eCom/eCom.epj b/samples/net/eCom/eCom.epj index cc34bbc..92c0c88 100644 --- a/samples/net/eCom/eCom.epj +++ b/samples/net/eCom/eCom.epj @@ -18,14 +18,16 @@ "Name" : "Debug", "Options" : { "Debug" : true, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/net/eirc/eIRC.epj b/samples/net/eirc/eIRC.epj index 458abb4..0d7b5f5 100644 --- a/samples/net/eirc/eIRC.epj +++ b/samples/net/eirc/eIRC.epj @@ -22,14 +22,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/net/httpserver/httpServer.epj b/samples/net/httpserver/httpServer.epj index e426ae6..38efa37 100644 --- a/samples/net/httpserver/httpServer.epj +++ b/samples/net/httpserver/httpServer.epj @@ -12,13 +12,15 @@ "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } }, { "Name" : "Debug", "Options" : { - "Debug" : true + "Debug" : true, + "FastMath" : false } } ], diff --git a/samples/net/networkFile/NetworkClient/NetworkClient.epj b/samples/net/networkFile/NetworkClient/NetworkClient.epj index 376ea46..638f19c 100644 --- a/samples/net/networkFile/NetworkClient/NetworkClient.epj +++ b/samples/net/networkFile/NetworkClient/NetworkClient.epj @@ -21,14 +21,16 @@ "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" - ] + ], + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ], diff --git a/samples/net/smtp/smtp.epj b/samples/net/smtp/smtp.epj index eec250e..a311cb9 100644 --- a/samples/net/smtp/smtp.epj +++ b/samples/net/smtp/smtp.epj @@ -21,7 +21,8 @@ "PreprocessorDefinitions" : [ "_DEBUG" ], - "Console" : true + "Console" : true, + "FastMath" : false } }, { @@ -29,7 +30,8 @@ "Options" : { "Debug" : false, "Optimization" : "Speed", - "Console" : false + "Console" : false, + "FastMath" : true } } ], diff --git a/samples/scanning/wiaTest/wiaTest.epj b/samples/scanning/wiaTest/wiaTest.epj index 05b2a49..7102459 100644 --- a/samples/scanning/wiaTest/wiaTest.epj +++ b/samples/scanning/wiaTest/wiaTest.epj @@ -27,7 +27,8 @@ ], "LibraryDirs" : [ "I:/Development/mssdk/lib" - ] + ], + "FastMath" : false } }, { @@ -37,7 +38,8 @@ "Optimization" : "Speed", "Libraries" : [ "ecere" - ] + ], + "FastMath" : true } } ], diff --git a/samples/threads/threadsAndListBoxes/blank.epj b/samples/threads/threadsAndListBoxes/blank.epj index c0da64c..69061b8 100644 --- a/samples/threads/threadsAndListBoxes/blank.epj +++ b/samples/threads/threadsAndListBoxes/blank.epj @@ -18,14 +18,16 @@ "Name" : "Debug", "Options" : { "Debug" : true, - "Optimization" : "None" + "Optimization" : "None", + "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, - "Optimization" : "Speed" + "Optimization" : "Speed", + "FastMath" : true } } ],