Changeset 45dc363611bc200a2ee564994690394e26edd914
- Timestamp:
- 03/03/08 22:25:32
(7 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@free.fr>
- git-committer:
- Pierre d'Herbemont <pdherbemont@free.fr> 1204579532 +0100
- git-parent:
[fa0e80f2459219263288e804543a7f3a6e232e81]
- git-author:
- Pierre d'Herbemont <pdherbemont@free.fr> 1204579532 +0100
- Message:
cmake: Fix tests.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9ecb0bc |
r45dc363 |
|
| 270 | 270 | # Tests |
|---|
| 271 | 271 | |
|---|
| 272 | | add_executable(test_control control/testapi.c) |
|---|
| | 272 | add_executable(test_testapi control/testapi.c) |
|---|
| 273 | 273 | add_executable(test_i18n_atof test/i18n_atof.c) |
|---|
| 274 | 274 | add_executable(test_url test/url.c) |
|---|
| … | … | |
| 276 | 276 | add_executable(test_dictionary test/dictionary.c) |
|---|
| 277 | 277 | |
|---|
| 278 | | target_link_libraries(test_control libvlc-control) |
|---|
| | 278 | target_link_libraries(test_testapi libvlc-control) |
|---|
| 279 | 279 | target_link_libraries(test_i18n_atof libvlc) |
|---|
| 280 | 280 | target_link_libraries(test_url libvlc) |
|---|
| … | … | |
| 282 | 282 | target_link_libraries(test_dictionary libvlc) |
|---|
| 283 | 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 | | |
|---|
| | 284 | add_test(test_control ${CMAKE_CURRENT_BINARY_DIR}/test_testapi) |
|---|
| | 285 | add_test(test_i18n_atof ${CMAKE_CURRENT_BINARY_DIR}/test_i18n_atof) |
|---|
| | 286 | add_test(test_url ${CMAKE_CURRENT_BINARY_DIR}/test_url) |
|---|
| | 287 | add_test(test_utf8 ${CMAKE_CURRENT_BINARY_DIR}/test_utf8) |
|---|
| | 288 | add_test(test_dictionary ${CMAKE_CURRENT_BINARY_DIR}/test_dictionary) |
|---|
| | 289 | |
|---|