hjiang / linqxx

LINQ-like syntactic sugar for C++

This URL has Read+Write access

linqxx / CMakeLists.txt
100644 9 lines (6 sloc) 0.193 kb
1
2
3
4
5
6
7
8
9
cmake_minimum_required(VERSION 2.4)
project(linqxx)
 
enable_testing()
 
add_executable(linqxx_test linqxx_test.cc)
target_link_libraries(linqxx_test gtest_main)
add_test(LinqxxTest linqxx_test)