Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
9ecb0bc0
Commit
9ecb0bc0
authored
Feb 28, 2008
by
Faustino Osuna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
+17
-17
No files found.
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
Markdown
is supported
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