| 272 | | add_executable(testapi control/testapi.c) |
|---|
| 273 | | add_executable(i18n_atof test/i18n_atof.c) |
|---|
| 274 | | add_executable(url test/url.c) |
|---|
| 275 | | add_executable(utf8 test/utf8.c) |
|---|
| 276 | | add_executable(dictionary test/dictionary.c) |
|---|
| 277 | | |
|---|
| 278 | | target_link_libraries(testapi libvlc-control) |
|---|
| 279 | | target_link_libraries(i18n_atof libvlc) |
|---|
| 280 | | target_link_libraries(url libvlc) |
|---|
| 281 | | target_link_libraries(utf8 libvlc) |
|---|
| 282 | | target_link_libraries(dictionary libvlc) |
|---|
| 283 | | |
|---|
| 284 | | add_test(testapi ${CMAKE_CURRENT_BINARY_DIR}/testapi) |
|---|
| 285 | | add_test(i18n_atof ${CMAKE_CURRENT_BINARY_DIR}/i18n_atof) |
|---|
| 286 | | add_test(url ${CMAKE_CURRENT_BINARY_DIR}/url) |
|---|
| 287 | | add_test(utf8 ${CMAKE_CURRENT_BINARY_DIR}/utf8) |
|---|
| 288 | | add_test(dictionary ${CMAKE_CURRENT_BINARY_DIR}/dictionary) |
|---|
| 289 | | |
|---|
| | 272 | add_executable(test_control control/testapi.c) |
|---|
| | 273 | add_executable(test_i18n_atof test/i18n_atof.c) |
|---|
| | 274 | add_executable(test_url test/url.c) |
|---|
| | 275 | add_executable(test_utf8 test/utf8.c) |
|---|
| | 276 | add_executable(test_dictionary test/dictionary.c) |
|---|
| | 277 | |
|---|
| | 278 | target_link_libraries(test_control libvlc-control) |
|---|
| | 279 | target_link_libraries(test_i18n_atof libvlc) |
|---|
| | 280 | target_link_libraries(test_url libvlc) |
|---|
| | 281 | target_link_libraries(test_utf8 libvlc) |
|---|
| | 282 | target_link_libraries(test_dictionary libvlc) |
|---|
| | 283 | |
|---|
| | 284 | add_test(test_control ${CMAKE_CURRENT_BINARY_DIR}/testapi) |
|---|
| | 285 | add_test(test_i18n_atof ${CMAKE_CURRENT_BINARY_DIR}/i18n_atof) |
|---|
| | 286 | add_test(test_url ${CMAKE_CURRENT_BINARY_DIR}/url) |
|---|
| | 287 | add_test(test_utf8 ${CMAKE_CURRENT_BINARY_DIR}/utf8) |
|---|
| | 288 | add_test(test_dictionary ${CMAKE_CURRENT_BINARY_DIR}/dictionary) |
|---|
| | 289 | |
|---|