Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added a missing library |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9e56dd977ced4310aa44ffcf6755f380 |
User & Date: | tangent 2016-02-06 10:02:51 |
Context
2016-02-06
| ||
10:22 | Whitespace fix check-in: fa93a19a0a user: tangent tags: trunk | |
10:02 | Added a missing library check-in: 9e56dd977c user: tangent tags: trunk | |
2015-12-21
| ||
02:10 | Added a FIXME comment check-in: 01622c2244 user: tangent tags: trunk | |
Changes
Changes to test/CMakeLists.txt.
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
foreach(basename array_index cpool datetime insertpolicy inttypes manip null_comparison qssqls qstream sqlstream ssqls2 string tcp uds wnp) add_test_executable(${basename}) endforeach(basename) # Add extra libraries to our needier targets target_link_libraries(test_ssqls2 ssqls2parse) if(TEST_NULL_UNIQUENESS) # This test purposely includes bad code that should fail to compile. # A thorough platform test will include an attempt to build this, # and the test must be considered a failure if it *does* build. The # test is making sure that a build-time check works as expected. add_test_executable(null_uniqueness) endif() |
| |
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
foreach(basename array_index cpool datetime insertpolicy inttypes manip
null_comparison qssqls qstream sqlstream ssqls2 string
tcp uds wnp)
add_test_executable(${basename})
endforeach(basename)
# Add extra libraries to our needier targets
target_link_libraries(test_ssqls2 ssqls2parse tabula)
if(TEST_NULL_UNIQUENESS)
# This test purposely includes bad code that should fail to compile.
# A thorough platform test will include an attempt to build this,
# and the test must be considered a failure if it *does* build. The
# test is making sure that a build-time check works as expected.
add_test_executable(null_uniqueness)
endif()
|