We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7efeea4 commit b316a24Copy full SHA for b316a24
A/asio/build_tarballs.jl
@@ -21,12 +21,12 @@ make install
21
"""
22
23
# These are the platforms we will build for by default, unless further
24
-# platforms are passed in on the command line
25
-all_platforms = supported_platforms()
+# platforms are passed in on the command line (header-only: same artifact for all)
+all_platforms = [AnyPlatform()]
26
27
-# The products that we will ensure are always built
+# The products that we will ensure are always built (header-only: export main header so downstreams can discover include/)
28
products = Product[
29
- LibraryProduct("libasio", :libasio),
+ FileProduct("include/asio.hpp", :asio_hpp),
30
]
31
32
# Dependencies that must be installed before this package can be built
0 commit comments