Skip to content

Commit

Permalink
Fixes to testsuite CMakeLists.txt and scons
Browse files Browse the repository at this point in the history
  • Loading branch information
danielaparker committed Jan 24, 2015
1 parent af0458b commit c6caf8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions test_suite/build/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ project (Tests CXX)
# load per-platform configuration
include (../../../build/cmake/${CMAKE_SYSTEM_NAME}.cmake)


set (Boost_NO_BOOST_CMAKE ON)
find_package (Boost REQUIRED COMPONENTS date_time unit_test_framework)
find_package (Boost REQUIRED COMPONENTS date_time unit_test_framework system)

add_executable (jsoncons_tests ../../src/csv_tests.cpp
../../src/allocator_tests.cpp
Expand Down
3 changes: 2 additions & 1 deletion test_suite/build/scons/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ cpppath = [
]
libs = [
'boost_date_time',
'boost_unit_test_framework'
'boost_unit_test_framework',
'boost_system'
]
libpath = []

Expand Down

0 comments on commit c6caf8e

Please sign in to comment.