From ba578196adc2bfffda0fdf6f289dcb243fa57587 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Wed, 6 Aug 2014 10:58:01 +0200 Subject: [PATCH] Fix C flags mixed with CPP flags --- CMakeLists.txt | 6 +++--- TODO.txt | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 622c355..bbbef26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/TODO.txt b/TODO.txt index b5bf68f..0bbd02a 100644 --- a/TODO.txt +++ b/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) -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 (!?)