Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
9ecb0bc0
Commit
9ecb0bc0
authored
Feb 28, 2008
by
Faustino Osuna
Browse files
cmake/src_CMakeLists.txt: Update generated test binaries to match original Makefile's convention.
parent
36cbf7f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
View file @
9ecb0bc0
...
...
@@ -269,21 +269,21 @@ set_target_properties(libvlc libvlc-control vlc PROPERTIES COMPILE_FLAGS
##########################################################
# Tests
add_executable(test
api
control/testapi.c)
add_executable(i18n_atof test/i18n_atof.c)
add_executable(url test/url.c)
add_executable(utf8 test/utf8.c)
add_executable(dictionary test/dictionary.c)
target_link_libraries(test
api
libvlc-control)
target_link_libraries(i18n_atof libvlc)
target_link_libraries(url libvlc)
target_link_libraries(utf8 libvlc)
target_link_libraries(dictionary libvlc)
add_test(test
api
${CMAKE_CURRENT_BINARY_DIR}/testapi)
add_test(i18n_atof ${CMAKE_CURRENT_BINARY_DIR}/i18n_atof)
add_test(url ${CMAKE_CURRENT_BINARY_DIR}/url)
add_test(utf8 ${CMAKE_CURRENT_BINARY_DIR}/utf8)
add_test(dictionary ${CMAKE_CURRENT_BINARY_DIR}/dictionary)
add_executable(test
_control
control/testapi.c)
add_executable(
test_
i18n_atof test/i18n_atof.c)
add_executable(
test_
url test/url.c)
add_executable(
test_
utf8 test/utf8.c)
add_executable(
test_
dictionary test/dictionary.c)
target_link_libraries(test
_control
libvlc-control)
target_link_libraries(
test_
i18n_atof libvlc)
target_link_libraries(
test_
url libvlc)
target_link_libraries(
test_
utf8 libvlc)
target_link_libraries(
test_
dictionary libvlc)
add_test(test
_control
${CMAKE_CURRENT_BINARY_DIR}/testapi)
add_test(
test_
i18n_atof ${CMAKE_CURRENT_BINARY_DIR}/i18n_atof)
add_test(
test_
url ${CMAKE_CURRENT_BINARY_DIR}/url)
add_test(
test_
utf8 ${CMAKE_CURRENT_BINARY_DIR}/utf8)
add_test(
test_
dictionary ${CMAKE_CURRENT_BINARY_DIR}/dictionary)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment