aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorthejch <[email protected]>2024-04-23 01:02:51 -0700
committerGitHub <[email protected]>2024-04-23 11:02:51 +0300
commitaab1df50abbf2cd3da7837e7b457b943907a0b3e (patch)
tree965268fe1c5ab00ebb6c79598670c55d6eb5b704 /Makefile
parent5fdd0bceac9b8b60e68635226de57c3d18d0a034 (diff)
downloadHyprland-aab1df50abbf2cd3da7837e7b457b943907a0b3e.tar.gz
Hyprland-aab1df50abbf2cd3da7837e7b457b943907a0b3e.zip
CI: add no PCH build (#5708)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 432dd4eb..cd93173b 100644
--- a/Makefile
+++ b/Makefile
@@ -20,6 +20,10 @@ debug:
cmake --build ./build --config Debug --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
chmod -R 777 ./build
+nopch:
+ cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:STRING=${PREFIX} -DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON -S . -B ./build -G Ninja
+ cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
+
clear:
rm -rf build
rm -f ./protocols/*-protocol.h ./protocols/*-protocol.c