You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(TestFindODBC C)
|
|
|
|
include(CTest)
|
|
|
|
|
|
|
|
find_package(ODBC)
|
|
|
|
|
|
|
|
add_executable(test_odbc_tgt main.c)
|
|
|
|
target_link_libraries(test_odbc_tgt ODBC::ODBC)
|
|
|
|
add_test(NAME test_odbc_tgt COMMAND test_odbc_tgt)
|
|
|
|
|
|
|
|
add_executable(test_odbc_var main.c)
|
|
|
|
target_include_directories(test_odbc_var PRIVATE ${ODBC_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(test_odbc_var PRIVATE ${ODBC_LIBRARIES})
|
|
|
|
add_test(NAME test_odbc_var COMMAND test_odbc_var)
|