-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[gts] Enables osx and android, fixes, cleanup. #34673
Changes from all commits
1f692b4
71ed962
98a5324
ebb9b7e
46c882d
286717b
fe733f3
710ad9f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
The port gts supports consumption from CMake: | ||
gts can be imported via CMake FindPkgConfig module: | ||
|
||
find_package(PkgConfig REQUIRED) | ||
pkg_check_modules(GTS gts REQUIRED) | ||
target_compile_options(main PRIVATE ${GTS_CFLAGS}) | ||
target_link_libraries(main PRIVATE ${GTS_LDFLAGS}) | ||
pkg_check_modules(GTS gts REQUIRED IMPORTED_TARGET) | ||
target_link_libraries(main PRIVATE PkgConfig::GTS) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -437,9 +437,6 @@ gstreamer:x64-android=fail | |
gstreamer:x64-windows-static = skip | ||
gstreamer:x64-windows-static-md = skip | ||
gtk:x64-windows-static-md=fail | ||
gts:arm-neon-android=fail | ||
gts:arm64-android=fail | ||
gts:x64-android=fail | ||
gul14:arm-neon-android=fail | ||
gul14:arm64-android=fail | ||
gul14:x64-android=fail | ||
|
@@ -466,6 +463,7 @@ iceoryx:x64-android=fail | |
iceoryx:arm64-android=fail | ||
iceoryx:arm-neon-android=fail | ||
ignition-common1:x64-linux=fail | ||
ignition-common1:x64-osx=fail | ||
Comment on lines
465
to
+466
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. osx didn't build before this PR, and now suffers from the same problem as linux. |
||
ignition-msgs1:arm-neon-android=fail | ||
ignition-msgs1:arm64-android=fail | ||
ignition-msgs1:arm64-windows=fail | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FTR the dll exports are handled by upstream's def file now.