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