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
9b1749fb
Commit
9b1749fb
authored
Feb 15, 2008
by
Pierre d'Herbemont
Browse files
cmake: Add test/dictionary.c to the list of test program.
parent
19bdca43
Changes
1
Hide whitespace changes
Inline
Side-by-side
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
View file @
9b1749fb
...
...
@@ -268,17 +268,21 @@ set_target_properties(libvlc libvlc-control vlc PROPERTIES COMPILE_FLAGS
##########################################################
# Tests
add_executable(testapi control/testapi.c)
add_executable(i18n_atof test/i18n_atof.c)
add_executable(url test/url.c)
add_executable(utf8 test/utf8.c)
target_link_libraries(testapi libvlc-control)
target_link_libraries(i18n_atof libvlc)
target_link_libraries(url libvlc)
target_link_libraries(utf8 libvlc)
add_test(testapi ${EXECUTABLE_OUTPUT_PATH}/testapi)
add_test(i18n_atof ${EXECUTABLE_OUTPUT_PATH}/i18n_atof)
add_test(url ${EXECUTABLE_OUTPUT_PATH}/url)
add_test(utf8 ${EXECUTABLE_OUTPUT_PATH}/utf8)
add_executable(testapi 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(testapi 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(testapi ${EXECUTABLE_OUTPUT_PATH}/testapi)
add_test(i18n_atof ${EXECUTABLE_OUTPUT_PATH}/i18n_atof)
add_test(url ${EXECUTABLE_OUTPUT_PATH}/url)
add_test(utf8 ${EXECUTABLE_OUTPUT_PATH}/utf8)
add_test(dictionary ${EXECUTABLE_OUTPUT_PATH}/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