build: dont compile rapidcheck with -Wall

This commit is contained in:
fanquake 2019-06-23 22:40:50 +08:00
parent 2cbcc55ba6
commit 63d0a079e0
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

@ -8,6 +8,10 @@ define $(package)_config_cmds
cmake -DCMAKE_INSTALL_PREFIX=$($(package)_staging_dir)$(host_prefix) -DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true -DRC_INSTALL_ALL_EXTRAS=ON
endef
define $(package)_preprocess_cmds
sed -i.old 's/ -Wall//' CMakeLists.txt
endef
define $(package)_build_cmds
$(MAKE) rapidcheck
endef