Skip to content

Commit 7c218da

Browse files
committed
build: specify cmake build dir for multiprocess depends build
When no build dir is specified, cmake will warn: ```bash Preprocessing libmultiprocess... Configuring libmultiprocess... CMake Warning: No source or binary directory provided. Both will be assumed to be the same as the current working directory, but note that this warning will become a fatal error in future CMake releases. ``` It's unclear if this will actually ever become an error, but it's also easy enough to just supply the directory, and save this maybe breaking in future.
1 parent 52f0f7a commit 7c218da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

depends/packages/libmultiprocess.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $(package)_sha256_hash=$(native_$(package)_sha256_hash)
66
$(package)_dependencies=native_$(package) capnp
77

88
define $(package)_config_cmds
9-
$($(package)_cmake)
9+
$($(package)_cmake) .
1010
endef
1111

1212
define $(package)_build_cmds

depends/packages/native_libmultiprocess.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $(package)_sha256_hash=9f8b055c8bba755dc32fe799b67c20b91e7b13e67cadafbc54c0f1def
66
$(package)_dependencies=native_capnp
77

88
define $(package)_config_cmds
9-
$($(package)_cmake)
9+
$($(package)_cmake) .
1010
endef
1111

1212
define $(package)_build_cmds

0 commit comments

Comments
 (0)