diff options
author | RaindropsSys <raindrops@equestria.dev> | 2024-06-16 12:02:05 +0200 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2024-06-16 12:02:05 +0200 |
commit | 55c7ee618e5d59ac5eb691febb6dd911f3f75d2a (patch) | |
tree | 310ff9cc2178a5f3a35aaa5ea8f1352114018f53 /updater/sql/win/deps/common-sqlite.gypi | |
parent | e44e2fe070484e06d384a31ef2699c3a2d5d474e (diff) | |
download | faunerie-55c7ee618e5d59ac5eb691febb6dd911f3f75d2a.tar.gz faunerie-55c7ee618e5d59ac5eb691febb6dd911f3f75d2a.tar.bz2 faunerie-55c7ee618e5d59ac5eb691febb6dd911f3f75d2a.zip |
Fix SQL stuff + remove C++ code
Diffstat (limited to 'updater/sql/win/deps/common-sqlite.gypi')
-rwxr-xr-x | updater/sql/win/deps/common-sqlite.gypi | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/updater/sql/win/deps/common-sqlite.gypi b/updater/sql/win/deps/common-sqlite.gypi deleted file mode 100755 index a04b1d5..0000000 --- a/updater/sql/win/deps/common-sqlite.gypi +++ /dev/null @@ -1,60 +0,0 @@ -{ - 'variables': { - 'sqlite_version%':'3440200', - "toolset%":'', - }, - 'target_defaults': { - 'default_configuration': 'Release', - 'conditions': [ - [ 'toolset!=""', { - 'msbuild_toolset':'<(toolset)' - }] - ], - 'configurations': { - 'Debug': { - 'defines!': [ - 'NDEBUG' - ], - 'cflags_cc!': [ - '-O3', - '-Os', - '-DNDEBUG' - ], - 'xcode_settings': { - 'OTHER_CPLUSPLUSFLAGS!': [ - '-O3', - '-Os', - '-DDEBUG' - ], - 'GCC_OPTIMIZATION_LEVEL': '0', - 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'YES' - }, - 'msvs_settings': { - 'VCCLCompilerTool': { - 'ExceptionHandling': 1, # /EHsc - } - } - }, - 'Release': { - 'defines': [ - 'NDEBUG' - ], - 'xcode_settings': { - 'OTHER_CPLUSPLUSFLAGS!': [ - '-Os', - '-O2' - ], - 'GCC_OPTIMIZATION_LEVEL': '3', - 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO', - 'DEAD_CODE_STRIPPING': 'YES', - 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES' - }, - 'msvs_settings': { - 'VCCLCompilerTool': { - 'ExceptionHandling': 1, # /EHsc - } - } - } - } - } -} |