Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
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
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
aa1d8707
Commit
aa1d8707
authored
1 year ago
by
Sébastien Blin
Committed by
Andreas Traczyk
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
cmake: "libjami-daemon" -> "libjami" (used in other build systems)
Change-Id: I9ef704107897a0a057e7d43feeb24d5e2eb73679
parent
d5ef59e4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+8
-1
8 additions, 1 deletion
CMakeLists.txt
compat/msvc/package.json
+1
-1
1 addition, 1 deletion
compat/msvc/package.json
compat/msvc/winmake.py
+3
-3
3 additions, 3 deletions
compat/msvc/winmake.py
with
12 additions
and
5 deletions
CMakeLists.txt
+
8
−
1
View file @
aa1d8707
cmake_minimum_required
(
VERSION 3.16
)
project
(
jami
-daemon
project
(
jami
VERSION 13.7.0
LANGUAGES C CXX
)
set
(
PACKAGE_NAME
"Jami Daemon"
)
...
...
@@ -241,6 +241,13 @@ elseif(MSVC)
endif
()
add_library
(
${
PROJECT_NAME
}
STATIC
${
ALL_FILES
}
)
# Add the lib prefix to the output name for MSVC.
if
(
MSVC
)
set
(
CMAKE_SHARED_LIBRARY_PREFIX
"lib"
)
set
(
CMAKE_STATIC_LIBRARY_PREFIX
"lib"
)
endif
()
set_target_properties
(
${
PROJECT_NAME
}
PROPERTIES FOLDER
"daemon"
)
set_target_properties
(
${
PROJECT_NAME
}
PROPERTIES CXX_STANDARD 17
)
target_compile_definitions
(
${
PROJECT_NAME
}
PRIVATE
...
...
This diff is collapsed.
Click to expand it.
compat/msvc/package.json
+
1
−
1
View file @
aa1d8707
...
...
@@ -16,5 +16,5 @@
"libgit2"
],
"configuration"
:
"ReleaseLib_win32"
,
"
project_paths"
:
[
"jami-daemon.vcxproj"
]
"
use_cmake"
:
true
}
This diff is collapsed.
Click to expand it.
compat/msvc/winmake.py
+
3
−
3
View file @
aa1d8707
...
...
@@ -49,7 +49,6 @@ log = None
# project paths
daemon_msvc_dir
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
daemon_dir
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
daemon_msvc_dir
))
daemon_build_dir
=
daemon_dir
+
r
'
\build
'
contrib_src_dir
=
daemon_dir
+
r
'
\contrib\src
'
contrib_build_dir
=
daemon_dir
+
r
'
\contrib\build
'
contrib_tmp_dir
=
daemon_dir
+
r
'
\contrib\tarballs
'
...
...
@@ -244,13 +243,14 @@ def make_daemon(pkg_info, force, sdk_version, toolset):
env_set
=
'
false
'
if
pkg_info
.
get
(
'
with_env
'
,
''
)
==
''
else
'
true
'
sdk_to_use
=
sdk_version
if
env_set
==
'
false
'
else
pkg_info
.
get
(
'
with_env
'
,
''
)
build
(
'
daemon
'
,
daemon_
build_
dir
,
build
(
'
daemon
'
,
daemon_dir
,
pkg_info
.
get
(
'
project_paths
'
,
[]),
pkg_info
.
get
(
'
custom_scripts
'
,
{}),
env_set
,
sdk_to_use
,
toolset
,
conf
=
pkg_info
.
get
(
'
configuration
'
,
'
Release
'
))
conf
=
pkg_info
.
get
(
'
configuration
'
,
'
Release
'
),
use_cmake
=
pkg_info
.
get
(
'
use_cmake
'
,
False
))
def
make
(
pkg_info
,
force
,
sdk_version
,
toolset
,
isPlugin
):
...
...
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