mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 17:56:13 -04:00
Fix C flags mixed with CPP flags
This commit is contained in:
parent
e07e6230e8
commit
ba578196ad
@ -33,9 +33,9 @@ if (MSVC)
|
|||||||
set(CPPCHECK_ARG_TEMPLATE "--template=vs")
|
set(CPPCHECK_ARG_TEMPLATE "--template=vs")
|
||||||
# disable Visual Studio warnings for fopen() used in the example
|
# disable Visual Studio warnings for fopen() used in the example
|
||||||
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
||||||
# Specific flags for multithread static linking
|
# Flags for linking with multithread static C++ runtime
|
||||||
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MT")
|
||||||
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd")
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /MTd")
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd")
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd")
|
||||||
else (MSVC)
|
else (MSVC)
|
||||||
|
6
TODO.txt
6
TODO.txt
@ -7,12 +7,12 @@ Publish a versionned ZIP file in Google Project Mirror
|
|||||||
|
|
||||||
Publish the Doxygen Documentation in the Github Pages (gh-pages branch)
|
Publish the Doxygen Documentation in the Github Pages (gh-pages branch)
|
||||||
|
|
||||||
Missing features in v0.5.0:
|
Missing features in v0.9.9:
|
||||||
|
- getColumnByName() (issue #23) ? std::map getRow() ?
|
||||||
- bind a SQLITE_STATIC value (string/blob)
|
- bind a SQLITE_STATIC value (string/blob)
|
||||||
- bind a dynamic value with zerocopy (unlike SQLITE_TRANSIENT) with custom deleter
|
- bind a dynamic value with zerocopy (unlike SQLITE_TRANSIENT) with custom deleter
|
||||||
- getColumnByName ? std::map getRow() ?
|
|
||||||
|
|
||||||
Missing documentation in v0.5.0:
|
Missing documentation in v0.9.9:
|
||||||
- explain the noncopyable property for RAII design
|
- explain the noncopyable property for RAII design
|
||||||
- comment on returning error code instead of exception that shall not be thrown when exepected (!?)
|
- comment on returning error code instead of exception that shall not be thrown when exepected (!?)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user