Devendor some thridparty deps #7836
No reviewers
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#7836
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "cmake-fixes"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Thanks!
@Ferenc- can you please help with testing these changes?
@ -36,3 +34,4 @@
target_include_directories(jansson INTERFACE "${PROJECT_BINARY_DIR}/3party/jansson/jansson/include")
add_library(jansson::jansson ALIAS jansson)
# Add gflags library.
This change would also be great to test and merge separately.
Why this change was required? Can it be extracted into a separate PR to test and polish properly?
Should it be set only for Debug and RelWithDebInfo configs?
Can this block be moved to 3party?
Why doesn't it compile from sources?
Is it really packaged on different systems?..
What is wrong with building these packages from sources?..
@ -9,2 +9,3 @@
target_link_libraries(${PROJECT_NAME}
jansson
PUBLIC
base
@ -12,1 +12,4 @@
omim_add_library(${PROJECT_NAME} ${SRC})
target_link_libraries(${PROJECT_NAME}
PUBLIC
coding
Why public? How does it work? )
coding
@ -9,2 +9,3 @@
target_link_libraries(${PROJECT_NAME}
jansson
PUBLIC
base
Both are used in public interface.
@ -12,1 +12,4 @@
omim_add_library(${PROJECT_NAME} ${SRC})
target_link_libraries(${PROJECT_NAME}
PUBLIC
coding
My rule is "private by default unless it's used in a public header".
Yes, but you need CMake 3.24+ for that
https://cmake.org/cmake/help/latest/variable/CMAKE_FIND_PACKAGE_TARGETS_GLOBAL.html#variable:CMAKE_FIND_PACKAGE_TARGETS_GLOBAL
Though IMHO it really shouldn't be in 3party.
"${OMIM_ROOT}/3party/utf8cpp/include"
from include pathChanges in this PR somewhat depend on each other, I really wouldn't like to split them.
@ -36,3 +34,4 @@
target_include_directories(jansson INTERFACE "${PROJECT_BINARY_DIR}/3party/jansson/jansson/include")
add_library(jansson::jansson ALIAS jansson)
# Add gflags library.
Ditto wouldn't want to dive into rebase-cherry-pick-hell
Those who set
WITH_SYSTEM_PROVIDED_3PARTY
should make sure they have it.https://repology.org/project/utfcpp/versions
Nothing in particular, though mixing system and vendored deps is considered bad.
Note that
add_subdirectory(jansson)
is not called on whenWITH_SYSTEM_PROVIDED_3PARTY
. CMake implicitly uses-ljansson
if it couldn't find target with namejansson
. It happens to work on Linux because everything is in include/link directories. This is why namespaced targets are preferred (they don't allow this implicit behavior).ditto
Does it even make sense to have release build without debug symbols?
Yes, when distributing a binary.
Windows binaries don't embed any debug information. I.e. without this flag you get
.exe
, with this flag you get.exe
+.pdb
.Does it influence the build speed?
My unscientific measurements (full build with tests, Release):
With flag: 8:50
Without flag: 8:30
Anyway, I've already removed it.
Ok, let's move on with this to be able to run Windows soon. Thank you very much!