summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorKirk Shoop <kirk.shoop@microsoft.com>2014-08-02 11:35:04 -0700
committerKirk Shoop <kirk.shoop@microsoft.com>2014-08-02 11:35:04 -0700
commit3bf429778a08eda9498c61ec1daa3664d5f1bbfd (patch)
tree7618ab45b97da371d4eaa95fa37719889de1077a /projects
parentfc4f3fa47e67e7b1d99dcec1a7092761426ab375 (diff)
downloadRxCpp-3bf429778a08eda9498c61ec1daa3664d5f1bbfd.tar.gz
added group_by
Diffstat (limited to 'projects')
-rw-r--r--projects/CMake/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt
index 3741630..99c20f2 100644
--- a/projects/CMake/CMakeLists.txt
+++ b/projects/CMake/CMakeLists.txt
@@ -44,6 +44,7 @@ set(TEST_SOURCES
${TEST_DIR}/operators/distinct_until_changed.cpp
${TEST_DIR}/operators/filter.cpp
${TEST_DIR}/operators/flat_map.cpp
+ ${TEST_DIR}/operators/group_by.cpp
${TEST_DIR}/operators/lift.cpp
${TEST_DIR}/operators/map.cpp
${TEST_DIR}/operators/merge.cpp
@@ -63,6 +64,13 @@ set(TEST_SOURCES
add_executable(rxcppv2_test ${TEST_SOURCES})
TARGET_LINK_LIBRARIES(rxcppv2_test ${CMAKE_THREAD_LIBS_INIT})
+set(OP_SOURCES
+ ${TEST_DIR}/test.cpp
+ ${TEST_DIR}/operators/group_by.cpp
+)
+#add_executable(op_test ${OP_SOURCES})
+#TARGET_LINK_LIBRARIES(op_test ${CMAKE_THREAD_LIBS_INIT})
+
set(EXAMPLES_DIR ${RXCPP_DIR}/Rx/v2/examples)
# define the sources of the pythagorian example