Changeset 34c102eb468171585b69ddd1d8c620ce521f335f
- Timestamp:
- 04/02/08 15:26:54
(10 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1202135214 +0000
- git-parent:
[b06b60d4aa4fd7fe413a938e2a35b579b57fe5b1]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1202135214 +0000
- Message:
src_CMakeLists: Build libvlc-control.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| red6e425 |
r34c102e |
|
| 131 | 131 | install_targets(/lib libvlc) |
|---|
| 132 | 132 | |
|---|
| | 133 | |
|---|
| | 134 | # libvlc-control |
|---|
| | 135 | set( SOURCES_libvlc_control |
|---|
| | 136 | control/libvlc_internal.h |
|---|
| | 137 | control/core.c |
|---|
| | 138 | control/log.c |
|---|
| | 139 | control/playlist.c |
|---|
| | 140 | control/vlm.c |
|---|
| | 141 | control/video.c |
|---|
| | 142 | control/audio.c |
|---|
| | 143 | control/dynamic_media_list.c |
|---|
| | 144 | control/event.c |
|---|
| | 145 | control/flat_media_list_view.c |
|---|
| | 146 | control/hierarchical_media_list_view.c |
|---|
| | 147 | control/hierarchical_node_media_list_view.c |
|---|
| | 148 | control/media_descriptor.c |
|---|
| | 149 | control/media_instance.c |
|---|
| | 150 | control/media_list.c |
|---|
| | 151 | control/media_list_path.h |
|---|
| | 152 | control/media_list_player.c |
|---|
| | 153 | control/media_list_view.c |
|---|
| | 154 | control/media_library.c |
|---|
| | 155 | control/mediacontrol_internal.h |
|---|
| | 156 | control/mediacontrol_core.c |
|---|
| | 157 | control/mediacontrol_util.c |
|---|
| | 158 | control/mediacontrol_audio_video.c |
|---|
| | 159 | control/media_discoverer.c |
|---|
| | 160 | control/tag_query.c ) |
|---|
| | 161 | |
|---|
| | 162 | add_library(libvlc-control SHARED ${SOURCES_libvlc_control}) |
|---|
| | 163 | install_targets(/lib libvlc-control) |
|---|
| | 164 | |
|---|
| 133 | 165 | ########################################################## |
|---|
| 134 | 166 | # Libraries |
|---|
| … | … | |
| 156 | 188 | # SET_TARGET_PROPERTIES |
|---|
| 157 | 189 | |
|---|
| 158 | | set_target_properties(libvlc vlc PROPERTIES COMPILE_FLAGS |
|---|
| | 190 | set_target_properties(libvlc libvlc-control vlc PROPERTIES COMPILE_FLAGS |
|---|
| 159 | 191 | "-std=c99 -I. -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -Wmissing-prototypes" ) |
|---|
| rb06b60d |
r34c102e |
|
| 99 | 99 | set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS |
|---|
| 100 | 100 | "${CMAKE_SHARED_MODULE_CREATE_C_FLAGS} -undefined dynamic_lookup") |
|---|
| 101 | | MESSAGE( "Using ${CMAKE_SHARED_MODULE_LINK_C_FLAGS}" ) |
|---|
| 102 | 101 | |
|---|
| 103 | 102 | set(HAVE_DL_DYLD ON INTERNAL) |
|---|