Devendor some thridparty deps #7836

Merged
Osyotr merged 14 commits from cmake-fixes into master 2024-04-06 22:50:34 +00:00
Osyotr commented 2024-04-06 13:49:16 +00:00 (Migrated from github.com)
No description provided.
biodranik (Migrated from github.com) reviewed 2024-04-06 14:06:22 +00:00
biodranik (Migrated from github.com) left a comment

Thanks!

@Ferenc- can you please help with testing these changes?

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.
biodranik (Migrated from github.com) commented 2024-04-06 14:04:14 +00:00

This change would also be great to test and merge separately.

This change would also be great to test and merge separately.
biodranik (Migrated from github.com) commented 2024-04-06 14:00:26 +00:00

Why this change was required? Can it be extracted into a separate PR to test and polish properly?

Why this change was required? Can it be extracted into a separate PR to test and polish properly?
biodranik (Migrated from github.com) commented 2024-04-06 13:56:07 +00:00

Should it be set only for Debug and RelWithDebInfo configs?

Should it be set only for Debug and RelWithDebInfo configs?
biodranik (Migrated from github.com) commented 2024-04-06 13:57:35 +00:00

Can this block be moved to 3party?

Can this block be moved to 3party?
biodranik (Migrated from github.com) commented 2024-04-06 14:06:01 +00:00

Why doesn't it compile from sources?

Why doesn't it compile from sources?
biodranik (Migrated from github.com) commented 2024-04-06 14:01:46 +00:00

Is it really packaged on different systems?..

Is it really packaged on different systems?..
biodranik (Migrated from github.com) commented 2024-04-06 14:04:39 +00:00

What is wrong with building these packages from sources?..

What is wrong with building these packages from sources?..
@ -9,2 +9,3 @@
target_link_libraries(${PROJECT_NAME}
jansson
PUBLIC
base
biodranik (Migrated from github.com) commented 2024-04-06 13:53:41 +00:00
  1. Won't private be enough?
  2. Should base also be public?
1. Won't private be enough? 2. Should base also be public?
@ -12,1 +12,4 @@
omim_add_library(${PROJECT_NAME} ${SRC})
target_link_libraries(${PROJECT_NAME}
PUBLIC
coding
biodranik (Migrated from github.com) commented 2024-04-06 13:54:11 +00:00

Why public? How does it work? )

Why public? How does it work? )
biodranik (Migrated from github.com) commented 2024-04-06 13:54:25 +00:00

coding

coding
Osyotr (Migrated from github.com) reviewed 2024-04-06 14:06:33 +00:00
Osyotr (Migrated from github.com) commented 2024-04-06 14:06:32 +00:00
    coding
```suggestion coding ```
Osyotr (Migrated from github.com) reviewed 2024-04-06 14:10:38 +00:00
@ -9,2 +9,3 @@
target_link_libraries(${PROJECT_NAME}
jansson
PUBLIC
base
Osyotr (Migrated from github.com) commented 2024-04-06 14:10:37 +00:00

Both are used in public interface.

Both are used in public interface.
Osyotr (Migrated from github.com) reviewed 2024-04-06 14:12:56 +00:00
@ -12,1 +12,4 @@
omim_add_library(${PROJECT_NAME} ${SRC})
target_link_libraries(${PROJECT_NAME}
PUBLIC
coding
Osyotr (Migrated from github.com) commented 2024-04-06 14:12:56 +00:00

My rule is "private by default unless it's used in a public header".

My rule is "private by default unless it's used in a public header".
Osyotr (Migrated from github.com) reviewed 2024-04-06 14:16:45 +00:00
Osyotr (Migrated from github.com) commented 2024-04-06 14:16:45 +00:00

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.

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.
Osyotr (Migrated from github.com) reviewed 2024-04-06 14:20:47 +00:00
Osyotr (Migrated from github.com) commented 2024-04-06 14:20:47 +00:00
  1. Remove hardcoded "${OMIM_ROOT}/3party/utf8cpp/include" from include path
  2. Unify usage for system-provided and vendored copy of utfcpp.

Changes in this PR somewhat depend on each other, I really wouldn't like to split them.

1) Remove hardcoded `"${OMIM_ROOT}/3party/utf8cpp/include"` from include path 2) Unify usage for system-provided and vendored copy of utfcpp. Changes in this PR somewhat depend on each other, I really wouldn't like to split them.
Osyotr (Migrated from github.com) reviewed 2024-04-06 14:23:37 +00:00
@ -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.
Osyotr (Migrated from github.com) commented 2024-04-06 14:23:37 +00:00

Ditto wouldn't want to dive into rebase-cherry-pick-hell

Ditto wouldn't want to dive into rebase-cherry-pick-hell
Osyotr (Migrated from github.com) reviewed 2024-04-06 14:26:41 +00:00
Osyotr (Migrated from github.com) commented 2024-04-06 14:26:41 +00:00

Those who set WITH_SYSTEM_PROVIDED_3PARTY should make sure they have it.
https://repology.org/project/utfcpp/versions

Those who set `WITH_SYSTEM_PROVIDED_3PARTY` should make sure they have it. https://repology.org/project/utfcpp/versions
Osyotr (Migrated from github.com) reviewed 2024-04-06 14:36:03 +00:00
Osyotr (Migrated from github.com) commented 2024-04-06 14:36:02 +00:00

Nothing in particular, though mixing system and vendored deps is considered bad.
Note that add_subdirectory(jansson) is not called on when WITH_SYSTEM_PROVIDED_3PARTY. CMake implicitly uses -ljansson if it couldn't find target with name jansson. 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).

Nothing in particular, though mixing system and vendored deps is considered bad. Note that `add_subdirectory(jansson)` is not called on when `WITH_SYSTEM_PROVIDED_3PARTY`. CMake implicitly uses `-ljansson` if it couldn't find target with name `jansson`. 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).
Osyotr (Migrated from github.com) reviewed 2024-04-06 14:36:09 +00:00
Osyotr (Migrated from github.com) commented 2024-04-06 14:36:09 +00:00

ditto

ditto
Osyotr (Migrated from github.com) reviewed 2024-04-06 15:29:54 +00:00
Osyotr (Migrated from github.com) commented 2024-04-06 15:29:53 +00:00

Does it even make sense to have release build without debug symbols?

Does it even make sense to have release build without debug symbols?
biodranik (Migrated from github.com) reviewed 2024-04-06 15:50:45 +00:00
biodranik (Migrated from github.com) commented 2024-04-06 15:50:45 +00:00

Yes, when distributing a binary.

Yes, when distributing a binary.
Osyotr (Migrated from github.com) reviewed 2024-04-06 17:13:12 +00:00
Osyotr (Migrated from github.com) commented 2024-04-06 17:13:11 +00:00

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.

> 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`.
biodranik (Migrated from github.com) reviewed 2024-04-06 20:09:24 +00:00
biodranik (Migrated from github.com) commented 2024-04-06 20:09:24 +00:00

Does it influence the build speed?

Does it influence the build speed?
Osyotr (Migrated from github.com) reviewed 2024-04-06 22:24:03 +00:00
Osyotr (Migrated from github.com) commented 2024-04-06 22:24:03 +00:00

My unscientific measurements (full build with tests, Release):
With flag: 8:50
Without flag: 8:30
Anyway, I've already removed it.

My unscientific measurements (full build with tests, Release): With flag: 8:50 Without flag: 8:30 Anyway, I've already removed it.
biodranik (Migrated from github.com) approved these changes 2024-04-06 22:48:53 +00:00
biodranik (Migrated from github.com) left a comment

Ok, let's move on with this to be able to run Windows soon. Thank you very much!

Ok, let's move on with this to be able to run Windows soon. Thank you very much!
This repo is archived. You cannot comment on pull requests.
No reviewers
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
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#7836
No description provided.