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/libmultiprocess.mk | |
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/libmultiprocess.mk')
-rw-r--r-- | depends/packages/libmultiprocess.mk | 2 |
1 files changed, 1 insertions, 1 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 |