Skip to content

Commit

Permalink
test join view in C++14-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler committed Dec 17, 2014
1 parent de52c5a commit 639d31d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 2.8)
set(CMAKE_LEGACY_CYGWIN_WIN32 0)

project(Range-v3 CXX)

find_package(Doxygen)
find_package(Git)

find_package(Doxygen)
find_package(Git)

enable_testing()

Expand Down
7 changes: 7 additions & 0 deletions test/view/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ add_test(test.view.iota, view.iota)
add_executable(view.join join.cpp)
add_test(test.view.join, view.join)

add_executable(view.join.cxx1y join.cpp)
add_test(test.view.join.cxx1y, view.join.cxx1y)

set_target_properties(
view.join.cxx1y
PROPERTIES COMPILE_FLAGS "-std=c++1y")

add_executable(view.map keys_value.cpp)
add_test(test.view.map, view.map)

Expand Down

0 comments on commit 639d31d

Please sign in to comment.