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
799056c6
Commit
799056c6
authored
2 years ago
by
Vladimir Stoiakin
Committed by
Andreas Traczyk
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
build: add dependency on libavutil for GNU/Linux
Change-Id: I3d43fd9f5782f5ebf7db9b2cef6b5d294e7aa36c
parent
d74cc973
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+5
-2
5 additions, 2 deletions
CMakeLists.txt
with
5 additions
and
2 deletions
CMakeLists.txt
+
5
−
2
View file @
799056c6
...
...
@@ -361,6 +361,7 @@ elseif (NOT APPLE)
endif
()
pkg_check_modules
(
XCB xcb
)
pkg_check_modules
(
LIBAVUTIL libavutil>=55.75.100
)
include_directories
(
${
LIBCLIENT_SRC_DIR
}
...
...
@@ -368,7 +369,8 @@ elseif (NOT APPLE)
${
LIBNOTIFY_INCLUDE_DIRS
}
${
LIBGDKPIXBUF_INCLUDE_DIRS
}
${
GLIB_INCLUDE_DIRS
}
${
XCB_INCLUDE_DIRS
}
)
${
XCB_INCLUDE_DIRS
}
${
LIBAVUTIL_INCLUDE_DIRS
}
)
set
(
JAMI_DATA_PREFIX
"
${
CMAKE_INSTALL_PREFIX
}
/share"
)
...
...
@@ -550,7 +552,8 @@ elseif (NOT APPLE)
${
LIBGDKPIXBUF_LIBRARIES
}
${
GLIB_LIBRARIES
}
${
GIO_LIBRARIES
}
${
XCB_LIBRARIES
}
)
${
XCB_LIBRARIES
}
${
LIBAVUTIL_LIBRARIES
}
)
# Installation rules
install
(
...
...
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