Fix C flags mixed with CPP flags

This commit is contained in:
Sébastien Rombauts 2014-08-06 10:58:01 +02:00
parent e07e6230e8
commit ba578196ad
2 changed files with 6 additions and 6 deletions

View File

@ -33,9 +33,9 @@ if (MSVC)
set(CPPCHECK_ARG_TEMPLATE "--template=vs")
# disable Visual Studio warnings for fopen() used in the example
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
# Specific flags for multithread static linking
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd")
# Flags for linking with multithread static C++ runtime
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MT")
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /MTd")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd")
else (MSVC)

View File

@ -7,12 +7,12 @@ Publish a versionned ZIP file in Google Project Mirror
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 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
- comment on returning error code instead of exception that shall not be thrown when exepected (!?)