Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
5b9a4e95
Commit
5b9a4e95
authored
Feb 05, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check for -lm
parent
6b9d2d1b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
+1
-2
extras/buildsystem/cmake/include/config.cmake
extras/buildsystem/cmake/include/config.cmake
+5
-0
No files found.
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
View file @
5b9a4e95
...
@@ -179,8 +179,6 @@ if(APPLE)
...
@@ -179,8 +179,6 @@ if(APPLE)
target_link_libraries(libvlc ${CARBON_FRAMEWORK})
target_link_libraries(libvlc ${CARBON_FRAMEWORK})
endif(APPLE)
endif(APPLE)
target_link_libraries(libvlc ${Dlopen_LIBRARY})
##########################################################
##########################################################
# revision.c
# revision.c
...
@@ -245,6 +243,7 @@ if(NOT APPLE)
...
@@ -245,6 +243,7 @@ if(NOT APPLE)
endif(NOT APPLE)
endif(NOT APPLE)
target_link_libraries(libvlc ${LIBRT} ${LIBICONV} ${Dlopen_LIBRARIES})
target_link_libraries(libvlc ${LIBRT} ${LIBICONV} ${Dlopen_LIBRARIES})
target_link_libraries(libvlc ${LIBM})
set_target_properties(libvlc PROPERTIES SOVERSION 1.0.0)
set_target_properties(libvlc PROPERTIES SOVERSION 1.0.0)
set_target_properties(libvlc libvlc-control PROPERTIES PREFIX "")
set_target_properties(libvlc libvlc-control PROPERTIES PREFIX "")
...
...
extras/buildsystem/cmake/include/config.cmake
View file @
5b9a4e95
...
@@ -92,6 +92,11 @@ if (HAVE_CLOCK_NANOSLEEP)
...
@@ -92,6 +92,11 @@ if (HAVE_CLOCK_NANOSLEEP)
set
(
LIBRT
"rt"
)
set
(
LIBRT
"rt"
)
endif
(
HAVE_CLOCK_NANOSLEEP
)
endif
(
HAVE_CLOCK_NANOSLEEP
)
check_library_exists
(
m pow
""
HAVE_LIBM
)
if
(
HAVE_LIBM
)
set
(
LIBM
"m"
)
endif
(
HAVE_LIBM
)
###########################################################
###########################################################
# Other check
# Other check
###########################################################
###########################################################
...
...
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