Skip to content

Commit 9f11e7b

Browse files
committed
build: Set projects default to debug and prefix /usr/local
Do not install to /usr per default and accidently overwrite the distributions version of the package. And also debugging symbols per default to make development setup as we don't install it anyway to /usr anyway. Signed-off-by: Daniel Wagner <[email protected]>
1 parent f83b2c4 commit 9f11e7b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ project(
1313
default_options: [
1414
'c_std=gnu99',
1515
'warning_level=1',
16-
'buildtype=release',
17-
'prefix=/usr',
16+
'buildtype=debug',
17+
'prefix=/usr/local',
1818
]
1919
)
2020

0 commit comments

Comments
 (0)