Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mtxclient
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
Container 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
Nheko Reborn
mtxclient
Commits
901ec5e3
Verified
Commit
901ec5e3
authored
1 year ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
Remove manual link of std::filesystem since we dropped support for gcc8
parent
72f9a20c
Branches
reportContent
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#5303
passed
1 year ago
Stage: build
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/CMakeLists.txt
+2
-10
2 additions, 10 deletions
examples/CMakeLists.txt
examples/meson.build
+0
-2
0 additions, 2 deletions
examples/meson.build
with
2 additions
and
12 deletions
examples/CMakeLists.txt
+
2
−
10
View file @
901ec5e3
...
...
@@ -3,16 +3,8 @@ include_directories(../tests)
add_executable
(
room_feed room_feed.cpp
)
target_link_libraries
(
room_feed MatrixClient::MatrixClient
)
include
(
CheckIncludeFileCXX
)
CHECK_INCLUDE_FILE_CXX
(
"filesystem"
HAVE_STD_FILESYSTEM
)
if
(
HAVE_STD_FILESYSTEM
)
add_executable
(
media_downloader media_downloader.cpp
)
target_link_libraries
(
media_downloader MatrixClient::MatrixClient
)
if
(
CMAKE_CXX_COMPILER_ID STREQUAL
"GNU"
)
target_link_libraries
(
media_downloader stdc++fs
)
endif
()
endif
()
add_executable
(
media_downloader media_downloader.cpp
)
target_link_libraries
(
media_downloader MatrixClient::MatrixClient
)
add_executable
(
memberstats memberstats.cpp
)
target_link_libraries
(
memberstats MatrixClient::MatrixClient
)
...
...
This diff is collapsed.
Click to expand it.
examples/meson.build
+
0
−
2
View file @
901ec5e3
...
...
@@ -4,13 +4,11 @@ room_feed = executable('room_feed',
include_directories
:
'../tests'
)
if
meson
.
get_compiler
(
'cpp'
).
has_header
(
'filesystem'
)
media_downloader
=
executable
(
'media_downloader'
,
'media_downloader.cpp'
,
dependencies
:
[
matrix_client_dep
],
include_directories
:
'../tests'
)
endif
simple_bot
=
executable
(
'memberstats'
,
'memberstats.cpp'
,
...
...
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