aboutsummaryrefslogtreecommitdiffhomepage
path: root/nix
diff options
context:
space:
mode:
authorMihai Fufezan <[email protected]>2024-09-22 20:53:34 +0300
committerMihai Fufezan <[email protected]>2024-09-27 00:07:52 +0300
commitf75f8efb1be227e586cc0ba2ce6153ce56e04314 (patch)
tree8ab775a82e74ed8e1c125d66d99e20379f72e400 /nix
parentbe96787ed086f751455cf713739296b5c6e3a235 (diff)
downloadHyprland-f75f8efb1be227e586cc0ba2ce6153ce56e04314.tar.gz
Hyprland-f75f8efb1be227e586cc0ba2ce6153ce56e04314.zip
Meson: add tracy dependency
Diffstat (limited to 'nix')
-rw-r--r--nix/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/nix/default.nix b/nix/default.nix
index df270f28..6f086ccc 100644
--- a/nix/default.nix
+++ b/nix/default.nix
@@ -144,7 +144,7 @@ in
mesonBuildType =
if debug
- then "debug"
+ then "debugoptimized"
else "release";
# we want as much debug info as possible
@@ -156,7 +156,10 @@ in
"legacy_renderer" = legacyRenderer;
"systemd" = withSystemd;
})
- (mesonBool "b_pch" false)
+ (mapAttrsToList mesonBool {
+ "b_pch" = false;
+ "tracy_enable" = false;
+ })
];
postInstall = ''