0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Merge tag '0.30' into develop

Misc:
  - Massive reduction of template error code
	- Increased warning level

Functionality
  - Added custom query
  - Added preprocessor generator for columns/tables (niXman)
  - Added UNION
  - Added WITH

Compatibility:
  - clang-3.1 crashes
	- clang-3.3+ is fine
This commit is contained in:
rbock 2015-03-08 20:36:57 +01:00
commit 4981b1962c

View File

@ -3,7 +3,7 @@ macro (build_and_run arg)
# Add headers to sources to enable file browsing in IDEs
include_directories("${CMAKE_BINARY_DIR}/tests")
add_executable("${arg}" "${arg}.cpp" ${sqlpp_headers} "${CMAKE_CURRENT_LIST_DIR}/Sample.h")
add_test("${arg}" "${arg}")
add_test("${arg}" "${CMAKE_BINARY_DIR}/tests/${arg}")
endmacro ()
build_and_run(BooleanExpressionTest)