Changeset 45dc363611bc200a2ee564994690394e26edd914

Show
Ignore:
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
  • extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt

    r9ecb0bc r45dc363  
    270270# Tests 
    271271 
    272 add_executable(test_control    control/testapi.c) 
     272add_executable(test_testapi    control/testapi.c) 
    273273add_executable(test_i18n_atof  test/i18n_atof.c) 
    274274add_executable(test_url        test/url.c) 
     
    276276add_executable(test_dictionary test/dictionary.c) 
    277277 
    278 target_link_libraries(test_control    libvlc-control) 
     278target_link_libraries(test_testapi    libvlc-control) 
    279279target_link_libraries(test_i18n_atof  libvlc) 
    280280target_link_libraries(test_url        libvlc) 
     
    282282target_link_libraries(test_dictionary libvlc) 
    283283 
    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  
     284add_test(test_control    ${CMAKE_CURRENT_BINARY_DIR}/test_testapi) 
     285add_test(test_i18n_atof  ${CMAKE_CURRENT_BINARY_DIR}/test_i18n_atof) 
     286add_test(test_url        ${CMAKE_CURRENT_BINARY_DIR}/test_url) 
     287add_test(test_utf8       ${CMAKE_CURRENT_BINARY_DIR}/test_utf8) 
     288add_test(test_dictionary ${CMAKE_CURRENT_BINARY_DIR}/test_dictionary) 
     289