mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-09-23 09:42:26 +00:00
added files from pr
This commit is contained in:
+8
-6
@@ -1,10 +1,11 @@
|
||||
project('4jcraft-chucklegrounds', ['cpp', 'c'],
|
||||
version : '0.1.0',
|
||||
default_options : [
|
||||
'buildtype=debug', # for now
|
||||
'unity=on', # merge source files per target
|
||||
'unity_size=8', # TODO: mess around with this
|
||||
'b_pch=true', # precompiled headers
|
||||
'warning_level=0',
|
||||
'buildtype=debug',
|
||||
'unity=on', # merge source files per target → fewer compile units
|
||||
'unity_size=8', # files per unity batch (tune up for faster full builds)
|
||||
'b_pch=true', # precompiled headers
|
||||
],
|
||||
)
|
||||
|
||||
@@ -16,7 +17,8 @@ cc = meson.get_compiler('cpp')
|
||||
# system deps
|
||||
gl_dep = dependency('gl')
|
||||
glu_dep = dependency('glu')
|
||||
glfw_dep = dependency('glfw3')
|
||||
sdl2_dep = dependency('sdl2') # Yes.. i know sdl3 is out, but there's not point upgrading right now except when
|
||||
# someone is gonna ask me "Hey juicey can you make it SDL3?" and i'd be like fuck you and still do it.
|
||||
png_dep = dependency('libpng')
|
||||
thread_dep = dependency('threads')
|
||||
dl_dep = cc.find_library('dl')
|
||||
@@ -52,4 +54,4 @@ subdir('4J.Profile')
|
||||
subdir('4J.Storage')
|
||||
subdir('Minecraft.Assets')
|
||||
subdir('Minecraft.World')
|
||||
subdir('Minecraft.Client')
|
||||
subdir('Minecraft.Client')
|
||||
|
||||
Reference in New Issue
Block a user