2a6f95894b
-fno-fast-math needs to be explicitly passed not to trigger #error preprocessor directive.
5 lines
181 B
CMake
5 lines
181 B
CMake
|
|
add_definitions(-DSQLITE_OMIT_LOAD_EXTENSION)
|
|
add_definitions(-DNDEBUG)
|
|
add_library(fgsqlite3 sqlite3.c)
|
|
set_target_properties(fgsqlite3 PROPERTIES COMPILE_FLAGS "-fno-fast-math")
|