Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-qt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
Show more breadcrumbs
savoirfairelinux
jami-client-qt
Commits
31c5cead
Commit
31c5cead
authored
1 year ago
by
Andreas Traczyk
Browse files
Options
Downloads
Patches
Plain Diff
misc: use jami-core
Change-Id: I081b2575d78352e091c60c9ac80d8c8c5512e9b0
parent
1c576a7a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
daemon
+1
-1
1 addition, 1 deletion
daemon
extras/build/cmake/modules/FindLibJami.cmake
+11
-10
11 additions, 10 deletions
extras/build/cmake/modules/FindLibJami.cmake
extras/scripts/build-windows.py
+1
-2
1 addition, 2 deletions
extras/scripts/build-windows.py
with
13 additions
and
13 deletions
daemon
@
8a42f969
Subproject commit
eab986321590a5812fea67d3a2baacd95e26173c
Subproject commit
8a42f969f5862df4db83e886c5b2d4682f50bc86
This diff is collapsed.
Click to expand it.
extras/build/cmake/modules/FindLibJami.cmake
+
11
−
10
View file @
31c5cead
...
...
@@ -53,13 +53,14 @@ set(CMAKE_FIND_LIBRARY_SUFFIXES_orig ${CMAKE_FIND_LIBRARY_SUFFIXES})
set
(
CMAKE_FIND_LIBRARY_SUFFIXES
".dylib;.so;.dll"
)
# Add the lib prefix for Windows checks.
if
(
${
CMAKE_SYSTEM_NAME
}
MATCHES
"Windows"
)
set
(
CMAKE_FIND_LIBRARY_PREFIXES
"lib;"
)
endif
()
set
(
LIBJAMI_NAMES
jami-core
jami
ring
)
if
(
WITH_DAEMON_SUBMODULE
)
find_library
(
LIBJAMI_LIB NAMES
jami ring
find_library
(
LIBJAMI_LIB NAMES
${
LIBJAMI_NAMES
}
PATHS
${
DAEMON_DIR
}
/src/.libs
PATHS
${
CMAKE_INSTALL_PREFIX
}
/lib
PATHS
${
CMAKE_INSTALL_PREFIX
}
/daemon/lib
...
...
@@ -69,7 +70,7 @@ if(WITH_DAEMON_SUBMODULE)
NO_DEFAULT_PATH
)
else
()
# Search only in these given PATHS.
find_library
(
LIBJAMI_LIB NAMES
jami ring
find_library
(
LIBJAMI_LIB NAMES
${
LIBJAMI_NAMES
}
PATHS
${
LIBJAMI_BUILD_DIR
}
/.libs
PATHS
${
RING_BUILD_DIR
}
/.libs
PATHS
${
CMAKE_INSTALL_PREFIX
}
/lib
...
...
@@ -81,7 +82,7 @@ else()
# Search elsewhere as well (e.g. system-wide).
if
(
NOT LIBJAMI_LIB
)
find_library
(
LIBJAMI_LIB NAMES
jami ring
)
find_library
(
LIBJAMI_LIB NAMES
${
LIBJAMI_NAMES
}
)
endif
()
endif
()
...
...
@@ -90,7 +91,7 @@ if(NOT LIBJAMI_LIB)
set
(
CMAKE_FIND_LIBRARY_SUFFIXES
".a;.lib"
)
if
(
WITH_DAEMON_SUBMODULE
)
find_library
(
LIBJAMI_LIB NAMES
jami ring
find_library
(
LIBJAMI_LIB NAMES
${
LIBJAMI_NAMES
}
PATHS
${
DAEMON_DIR
}
/src/.libs
PATHS
${
CMAKE_INSTALL_PREFIX
}
PATHS
${
CMAKE_INSTALL_PREFIX
}
/lib
...
...
@@ -100,7 +101,7 @@ if(NOT LIBJAMI_LIB)
NO_DEFAULT_PATH
)
else
()
# Search only in these given PATHS.
find_library
(
LIBJAMI_LIB NAMES
jami ring
find_library
(
LIBJAMI_LIB NAMES
${
LIBJAMI_NAMES
}
PATHS
${
LIBJAMI_BUILD_DIR
}
/.libs
PATHS
${
RING_BUILD_DIR
}
/.libs
PATHS
${
CMAKE_INSTALL_PREFIX
}
...
...
@@ -112,7 +113,7 @@ if(NOT LIBJAMI_LIB)
# Search elsewhere as well (e.g. system-wide).
if
(
NOT LIBJAMI_LIB
)
find_library
(
LIBJAMI_LIB NAMES
jami ring
)
find_library
(
LIBJAMI_LIB NAMES
${
LIBJAMI_NAMES
}
)
endif
()
if
(
NOT
${
CMAKE_SYSTEM_NAME
}
MATCHES
"Windows"
)
...
...
This diff is collapsed.
Click to expand it.
extras/scripts/build-windows.py
+
1
−
2
View file @
31c5cead
...
...
@@ -272,8 +272,7 @@ def build(config_str, qt_dir, tests):
"
-DWITH_DAEMON_SUBMODULE=ON
"
,
"
-DCMAKE_PREFIX_PATH=
"
+
qt_dir
,
"
-DCMAKE_MSVCIDE_RUN_PATH=
"
+
qt_dir
+
"
\\
bin
"
,
"
-DCMAKE_INSTALL_PREFIX=
"
+
daemon_bin_dir
,
"
-DLIBJAMI_INCLUDE_DIR=
"
+
daemon_dir
+
"
\\
src
\\
jami
"
,
"
-DCMAKE_INSTALL_PREFIX=
"
+
os
.
getcwd
(),
"
-DCMAKE_SYSTEM_VERSION=
"
+
WIN_SDK_VERSION
,
"
-DCMAKE_BUILD_TYPE=
"
+
"
Release
"
,
"
-DENABLE_TESTS=
"
+
str
(
tests
).
lower
(),
...
...
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