diff options
author | fanquake <fanquake@gmail.com> | 2022-04-04 10:21:01 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-04-04 10:24:06 +0100 |
commit | 7c218dacd0e9602b8f755be42e96c49706f96305 (patch) | |
tree | 1c443607916a075ca14fc083d1058df785c233d7 /depends/packages | |
parent | 52f0f7a1bb5d8bcebd94ed7786539752c5f22fcb (diff) |
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.
Diffstat (limited to 'depends/packages')
-rw-r--r-- | depends/packages/libmultiprocess.mk | 2 | ||||
-rw-r--r-- | depends/packages/native_libmultiprocess.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/depends/packages/libmultiprocess.mk b/depends/packages/libmultiprocess.mk index 40ab3c68ea..864e33bc9a 100644 --- a/depends/packages/libmultiprocess.mk +++ b/depends/packages/libmultiprocess.mk @@ -6,7 +6,7 @@ $(package)_sha256_hash=$(native_$(package)_sha256_hash) $(package)_dependencies=native_$(package) capnp define $(package)_config_cmds - $($(package)_cmake) + $($(package)_cmake) . endef define $(package)_build_cmds diff --git a/depends/packages/native_libmultiprocess.mk b/depends/packages/native_libmultiprocess.mk index 14653ce9fb..6e600c5720 100644 --- a/depends/packages/native_libmultiprocess.mk +++ b/depends/packages/native_libmultiprocess.mk @@ -6,7 +6,7 @@ $(package)_sha256_hash=9f8b055c8bba755dc32fe799b67c20b91e7b13e67cadafbc54c0f1def $(package)_dependencies=native_capnp define $(package)_config_cmds - $($(package)_cmake) + $($(package)_cmake) . endef define $(package)_build_cmds |