misc; modified all project (.epj) files to have the appropriate fast math option...
[sdk] / eda / drivers / sqliteCipher / SQLiteCipherShellCmd.epj
1 {
2    "Version" : 0.2,
3    "ModuleName" : "SQLiteCipherShellCmd",
4    "Options" : {
5       "Warnings" : "All",
6       "Optimization" : "None",
7       "PreprocessorDefinitions" : [
8          "SQLITE_HAS_CODEC"
9       ],
10       "IncludeDirs" : [
11          "../sqliteCipher"
12       ],
13       "TargetType" : "Executable",
14       "TargetFileName" : "sqlcipher3",
15       "TargetDirectory" : "obj/$(CONFIG).$(PLATFORM)",
16       "ObjectsDirectory" : "obj/$(CONFIG).$(PLATFORM)",
17       "Console" : true
18    },
19    "Platforms" : [
20       {
21          "Name" : "linux",
22          "Options" : {
23             "Libraries" : [
24                "pthread",
25                "dl",
26                "crypto"
27             ]
28          }
29       },
30       {
31          "Name" : "apple",
32          "Options" : {
33             "Libraries" : [
34                "pthread",
35                "dl",
36                "crypto"
37             ]
38          }
39       },
40       {
41          "Name" : "win32",
42          "Options" : {
43             "Libraries" : [
44                "libeay32"
45             ]
46          }
47       }
48    ],
49    "Configurations" : [
50       {
51          "Name" : "Debug",
52          "Options" : {
53             "Debug" : true,
54             "PreprocessorDefinitions" : [
55                "_DEBUG"
56             ],
57             "FastMath" : false
58          }
59       },
60       {
61          "Name" : "Release",
62          "Options" : {
63             "NoLineNumbers" : true,
64             "Optimization" : "Speed",
65             "FastMath" : true
66          }
67       }
68    ],
69    "Files" : [
70       "../sqlite/shell.c",
71       "sqlite3.c",
72       "sqlite3.h"
73    ],
74    "ResourcesPath" : "",
75    "Resources" : [
76
77    ]
78 }