Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
7218c5a6
Commit
7218c5a6
authored
10 years ago
by
Emmanuel Lepage Vallee
Browse files
Options
Downloads
Patches
Plain Diff
qtwrapper: Enable direct builds on Linux
Refs #69938
parent
6f2b746e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+6
-1
6 additions, 1 deletion
CMakeLists.txt
cmake/FindRing.cmake
+20
-3
20 additions, 3 deletions
cmake/FindRing.cmake
xml/callmanager-introspec.xml
+3
-2
3 additions, 2 deletions
xml/callmanager-introspec.xml
xml/videomanager-introspec.xml
+1
-1
1 addition, 1 deletion
xml/videomanager-introspec.xml
with
30 additions
and
7 deletions
CMakeLists.txt
+
6
−
1
View file @
7218c5a6
...
...
@@ -134,6 +134,11 @@ IF(${ENABLE_LIBWRAP} MATCHES true)
MESSAGE
(
"Compiling for OS X: LibWrap enabled, Qt5 enabled."
)
INCLUDE_DIRECTORIES
(
${
CMAKE_SOURCE_DIR
}
/src/qtwrapper/
)
IF
(
${
VERBOSE_IPC
}
MATCHES true
)
MESSAGE
(
"Adding more debug output"
)
ADD_DEFINITIONS
(
-DVERBOSE_IPC=true
)
ENDIF
()
ENDIF
()
IF
(
${
RING_FOUND
}
MATCHES
"true"
)
...
...
@@ -150,7 +155,7 @@ FIND_PACKAGE(Qt5Core REQUIRED)
FIND_PACKAGE
(
Qt5DBus
)
# ADD_DEFINITIONS(-DQT_DISABLE_DEPRECATED_BEFORE=1)
SET
(
GENERIC_LIB_VERSION
"0.
1
.0"
)
SET
(
GENERIC_LIB_VERSION
"0.
2
.0"
)
INCLUDE_DIRECTORIES
(
SYSTEM
${
QT_INCLUDES
}
)
INCLUDE_DIRECTORIES
(
${
CMAKE_CURRENT_SOURCE_DIR
}
)
...
...
This diff is collapsed.
Click to expand it.
cmake/FindRing.cmake
+
20
−
3
View file @
7218c5a6
...
...
@@ -15,9 +15,26 @@ ELSE()
ENDIF
()
SET
(
CMAKE_FIND_LIBRARY_SUFFIXES
".dylib;.so;.dll"
)
FIND_LIBRARY
(
ring_BIN NAMES ring
PATHS
${
RING_BUILD_DIR
}
/.libs
PATHS
${
CMAKE_INSTALL_PREFIX
}
/libexec
)
FIND_LIBRARY
(
ring_BIN NAMES ring
PATHS
${
RING_BUILD_DIR
}
/.libs
PATHS
${
CMAKE_INSTALL_PREFIX
}
/lib
PATHS
${
CMAKE_INSTALL_PREFIX
}
/libexec
)
# Try a static version too
IF
(
${
ring_BIN
}
MATCHES
""
)
SET
(
CMAKE_FIND_LIBRARY_SUFFIXES
".a;.lib"
)
FIND_LIBRARY
(
ring_BIN NAMES ring
PATHS
${
RING_BUILD_DIR
}
/.libs
PATHS
${
CMAKE_INSTALL_PREFIX
}
/lib
PATHS
${
CMAKE_INSTALL_PREFIX
}
/libexec
)
ADD_DEFINITIONS
(
-fPIC
)
ENDIF
()
MESSAGE
(
"Ring daemon header is in "
${
ring_INCLUDE_DIRS
}
)
MESSAGE
(
"Ring library path is "
${
ring_BIN
}
)
This diff is collapsed.
Click to expand it.
xml/callmanager-introspec.xml
+
3
−
2
View file @
7218c5a6
...
...
@@ -505,10 +505,11 @@
</ul>
</tp:docstring>
</arg>
<arg
type=
"i"
name=
"code"
>
<arg
type=
"i"
name=
"code"
>
<tp:docstring>
The
SIP or IAX2 message code
The
optional account-type specific message code. 0 if not set.
</tp:docstring>
<tp:added
version=
"2.0.0"
/>
</arg>
</signal>
...
...
This diff is collapsed.
Click to expand it.
xml/videomanager-introspec.xml
+
1
−
1
View file @
7218c5a6
...
...
@@ -60,7 +60,7 @@
A media resource locator (MRL).
Currently, the following are supported:
<ul>
<li>
v4l2
://DEVICE
</li>
<li>
camera
://DEVICE
</li>
<li>
display://DISPLAY_NAME[ WIDTHxHEIGHT]
</li>
<li>
file://IMAGE_PATH
</li>
</ul>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment