meow
This commit is contained in:
parent
be27389f6e
commit
4d16e66000
3 changed files with 180 additions and 189 deletions
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* text eol=lf
|
10
.gitmodules
vendored
10
.gitmodules
vendored
|
@ -1,10 +0,0 @@
|
||||||
[submodule "subprojects/reflectcpp"]
|
|
||||||
path = subprojects/reflectcpp
|
|
||||||
url = https://github.com/getml/reflect-cpp
|
|
||||||
[submodule "subprojects/sdbus-c++"]
|
|
||||||
path = subprojects/sdbus-c++
|
|
||||||
url = https://github.com/Kistler-Group/sdbus-cpp
|
|
||||||
[submodule "subprojects/systemd"]
|
|
||||||
path = subprojects/systemd
|
|
||||||
url = https://github.com/systemd/systemd
|
|
||||||
branch = v257-stable
|
|
358
meson.build
358
meson.build
|
@ -1,179 +1,179 @@
|
||||||
# ----------------------- #
|
# ----------------------- #
|
||||||
# Project Configuration #
|
# Project Configuration #
|
||||||
# ----------------------- #
|
# ----------------------- #
|
||||||
project(
|
project(
|
||||||
'draconis++',
|
'draconis++',
|
||||||
'cpp',
|
'cpp',
|
||||||
version: '0.1.0',
|
version: '0.1.0',
|
||||||
default_options: [
|
default_options: [
|
||||||
'default_library=static',
|
'default_library=static',
|
||||||
'warning_level=everything',
|
'warning_level=everything',
|
||||||
'buildtype=debugoptimized',
|
'buildtype=debugoptimized',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
cpp = meson.get_compiler('cpp')
|
cpp = meson.get_compiler('cpp')
|
||||||
host_system = host_machine.system()
|
host_system = host_machine.system()
|
||||||
|
|
||||||
# ------------------------ #
|
# ------------------------ #
|
||||||
# Compiler Configuration #
|
# Compiler Configuration #
|
||||||
# ------------------------ #
|
# ------------------------ #
|
||||||
common_warning_flags = [
|
common_warning_flags = [
|
||||||
'-Wno-c++20-compat',
|
'-Wno-c++20-compat',
|
||||||
'-Wno-c++20-extensions',
|
'-Wno-c++20-extensions',
|
||||||
'-Wno-c++98-compat',
|
'-Wno-c++98-compat',
|
||||||
'-Wno-c++98-compat-pedantic',
|
'-Wno-c++98-compat-pedantic',
|
||||||
'-Wno-disabled-macro-expansion',
|
'-Wno-disabled-macro-expansion',
|
||||||
'-Wno-missing-prototypes',
|
'-Wno-missing-prototypes',
|
||||||
'-Wno-padded',
|
'-Wno-padded',
|
||||||
'-Wno-pre-c++20-compat-pedantic',
|
'-Wno-pre-c++20-compat-pedantic',
|
||||||
'-Wunused-function',
|
'-Wunused-function',
|
||||||
]
|
]
|
||||||
|
|
||||||
common_cpp_flags = {
|
common_cpp_flags = {
|
||||||
'common': [
|
'common': [
|
||||||
'-fno-strict-enums',
|
'-fno-strict-enums',
|
||||||
'-fvisibility=hidden',
|
'-fvisibility=hidden',
|
||||||
'-fvisibility-inlines-hidden',
|
'-fvisibility-inlines-hidden',
|
||||||
'-std=c++26',
|
'-std=c++26',
|
||||||
],
|
],
|
||||||
'msvc': [
|
'msvc': [
|
||||||
'-DNOMINMAX', '/Zc:__cplusplus',
|
'-DNOMINMAX', '/Zc:__cplusplus',
|
||||||
'/std:c++latest',
|
'/std:c++latest',
|
||||||
],
|
],
|
||||||
'unix_extra': [
|
'unix_extra': [
|
||||||
'-march=native',
|
'-march=native',
|
||||||
'-nostdlib++',
|
'-nostdlib++',
|
||||||
],
|
],
|
||||||
'windows_extra': '-DCURL_STATICLIB',
|
'windows_extra': '-DCURL_STATICLIB',
|
||||||
}
|
}
|
||||||
|
|
||||||
# Configure Objective-C++ for macOS
|
# Configure Objective-C++ for macOS
|
||||||
if host_system == 'darwin'
|
if host_system == 'darwin'
|
||||||
add_languages('objcpp', native: false)
|
add_languages('objcpp', native: false)
|
||||||
objcpp = meson.get_compiler('objcpp')
|
objcpp = meson.get_compiler('objcpp')
|
||||||
objcpp_flags = common_warning_flags + [
|
objcpp_flags = common_warning_flags + [
|
||||||
'-Wno-switch-default',
|
'-Wno-switch-default',
|
||||||
'-std=c++2b',
|
'-std=c++2b',
|
||||||
'-fvisibility=hidden',
|
'-fvisibility=hidden',
|
||||||
'-fvisibility-inlines-hidden',
|
'-fvisibility-inlines-hidden',
|
||||||
]
|
]
|
||||||
add_project_arguments(objcpp.get_supported_arguments(objcpp_flags), language: 'objcpp')
|
add_project_arguments(objcpp.get_supported_arguments(objcpp_flags), language: 'objcpp')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Apply C++ compiler arguments
|
# Apply C++ compiler arguments
|
||||||
if cpp.get_id() in ['msvc', 'clang-cl']
|
if cpp.get_id() in ['msvc', 'clang-cl']
|
||||||
common_cpp_args = common_cpp_flags['msvc']
|
common_cpp_args = common_cpp_flags['msvc']
|
||||||
if cpp.get_id() == 'clang-cl'
|
if cpp.get_id() == 'clang-cl'
|
||||||
common_cpp_args += common_warning_flags + common_cpp_flags['common']
|
common_cpp_args += common_warning_flags + common_cpp_flags['common']
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
common_cpp_args = common_warning_flags + common_cpp_flags['common'] + common_cpp_flags['unix_extra']
|
common_cpp_args = common_warning_flags + common_cpp_flags['common'] + common_cpp_flags['unix_extra']
|
||||||
if host_system == 'windows'
|
if host_system == 'windows'
|
||||||
common_cpp_args += common_cpp_flags['windows_extra']
|
common_cpp_args += common_cpp_flags['windows_extra']
|
||||||
endif
|
endif
|
||||||
common_cpp_args = cpp.get_supported_arguments(common_cpp_args)
|
common_cpp_args = cpp.get_supported_arguments(common_cpp_args)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
add_project_arguments(common_cpp_args, language: 'cpp')
|
add_project_arguments(common_cpp_args, language: 'cpp')
|
||||||
|
|
||||||
# ------- #
|
# ------- #
|
||||||
# Files #
|
# Files #
|
||||||
# ------- #
|
# ------- #
|
||||||
base_sources = files('src/config/config.cpp', 'src/config/weather.cpp', 'src/main.cpp')
|
base_sources = files('src/config/config.cpp', 'src/config/weather.cpp', 'src/main.cpp')
|
||||||
|
|
||||||
platform_sources = {
|
platform_sources = {
|
||||||
'linux': ['src/os/linux.cpp', 'src/os/linux/issetugid_stub.cpp'],
|
'linux': ['src/os/linux.cpp', 'src/os/linux/issetugid_stub.cpp'],
|
||||||
'freebsd': ['src/os/freebsd.cpp'],
|
'freebsd': ['src/os/freebsd.cpp'],
|
||||||
'darwin': ['src/os/macos.cpp', 'src/os/macos/bridge.mm'],
|
'darwin': ['src/os/macos.cpp', 'src/os/macos/bridge.mm'],
|
||||||
'windows': ['src/os/windows.cpp'],
|
'windows': ['src/os/windows.cpp'],
|
||||||
}
|
}
|
||||||
|
|
||||||
sources = base_sources + files(platform_sources.get(host_system, []))
|
sources = base_sources + files(platform_sources.get(host_system, []))
|
||||||
|
|
||||||
# --------------------- #
|
# --------------------- #
|
||||||
# Dependencies Config #
|
# Dependencies Config #
|
||||||
# --------------------- #
|
# --------------------- #
|
||||||
common_deps = [
|
common_deps = [
|
||||||
dependency('fmt', include_type: 'system', static: true),
|
dependency('fmt', include_type: 'system', static: true),
|
||||||
dependency('libcurl', include_type: 'system', static: true),
|
dependency('libcurl', include_type: 'system', static: true),
|
||||||
dependency('tomlplusplus', include_type: 'system', static: true),
|
dependency('tomlplusplus', include_type: 'system', static: true),
|
||||||
dependency('glaze', include_type: 'system'),
|
dependency('glaze', include_type: 'system'),
|
||||||
dependency('openssl', include_type: 'system', static: true, required: false),
|
dependency('openssl', include_type: 'system', static: true, required: false),
|
||||||
]
|
]
|
||||||
|
|
||||||
# Platform-specific dependencies
|
# Platform-specific dependencies
|
||||||
platform_deps = []
|
platform_deps = []
|
||||||
|
|
||||||
if host_system == 'darwin'
|
if host_system == 'darwin'
|
||||||
platform_deps += [
|
platform_deps += [
|
||||||
dependency(
|
dependency(
|
||||||
'appleframeworks',
|
'appleframeworks',
|
||||||
modules: ['foundation', 'mediaplayer', 'systemconfiguration'],
|
modules: ['foundation', 'mediaplayer', 'systemconfiguration'],
|
||||||
static: true,
|
static: true,
|
||||||
),
|
),
|
||||||
dependency('iconv'),
|
dependency('iconv'),
|
||||||
]
|
]
|
||||||
elif host_system == 'windows'
|
elif host_system == 'windows'
|
||||||
platform_deps += [
|
platform_deps += [
|
||||||
cpp.find_library('dwmapi'),
|
cpp.find_library('dwmapi'),
|
||||||
cpp.find_library('windowsapp'),
|
cpp.find_library('windowsapp'),
|
||||||
]
|
]
|
||||||
elif host_system == 'linux' or host_system == 'freebsd'
|
elif host_system == 'linux' or host_system == 'freebsd'
|
||||||
platform_deps += [
|
platform_deps += [
|
||||||
dependency('SQLiteCpp'),
|
dependency('SQLiteCpp'),
|
||||||
dependency('x11'),
|
dependency('x11'),
|
||||||
dependency('xcb'),
|
dependency('xcb'),
|
||||||
dependency('xau'),
|
dependency('xau'),
|
||||||
dependency('xdmcp'),
|
dependency('xdmcp'),
|
||||||
dependency('wayland-client'),
|
dependency('wayland-client'),
|
||||||
dependency('dbus-1', include_type: 'system'),
|
dependency('dbus-1', include_type: 'system'),
|
||||||
]
|
]
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# FTXUI configuration
|
# FTXUI configuration
|
||||||
ftxui_components = ['ftxui::screen', 'ftxui::dom', 'ftxui::component']
|
ftxui_components = ['ftxui::screen', 'ftxui::dom', 'ftxui::component']
|
||||||
ftxui_dep = dependency(
|
ftxui_dep = dependency(
|
||||||
'ftxui',
|
'ftxui',
|
||||||
modules: ftxui_components,
|
modules: ftxui_components,
|
||||||
include_type: 'system',
|
include_type: 'system',
|
||||||
static: true,
|
static: true,
|
||||||
required: false,
|
required: false,
|
||||||
)
|
)
|
||||||
|
|
||||||
if not ftxui_dep.found()
|
if not ftxui_dep.found()
|
||||||
ftxui_dep = declare_dependency(
|
ftxui_dep = declare_dependency(
|
||||||
dependencies: [
|
dependencies: [
|
||||||
dependency('ftxui-dom', fallback: ['ftxui', 'dom_dep']),
|
dependency('ftxui-dom', fallback: ['ftxui', 'dom_dep']),
|
||||||
dependency('ftxui-screen', fallback: ['ftxui', 'screen_dep']),
|
dependency('ftxui-screen', fallback: ['ftxui', 'screen_dep']),
|
||||||
dependency('ftxui-component', fallback: ['ftxui', 'component_dep']),
|
dependency('ftxui-component', fallback: ['ftxui', 'component_dep']),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Combine all dependencies
|
# Combine all dependencies
|
||||||
deps = common_deps + platform_deps + ftxui_dep
|
deps = common_deps + platform_deps + ftxui_dep
|
||||||
|
|
||||||
# ------------------------- #
|
# ------------------------- #
|
||||||
# Link/ObjC Configuration #
|
# Link/ObjC Configuration #
|
||||||
# ------------------------- #
|
# ------------------------- #
|
||||||
link_args = []
|
link_args = []
|
||||||
objc_args = []
|
objc_args = []
|
||||||
|
|
||||||
if host_system == 'darwin'
|
if host_system == 'darwin'
|
||||||
objc_args += ['-fobjc-arc']
|
objc_args += ['-fobjc-arc']
|
||||||
elif cpp.get_id() == 'clang'
|
elif cpp.get_id() == 'clang'
|
||||||
link_args += ['-static-libgcc', '-static-libstdc++']
|
link_args += ['-static-libgcc', '-static-libstdc++']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# ------------------- #
|
# ------------------- #
|
||||||
# Executable Target #
|
# Executable Target #
|
||||||
# ------------------- #
|
# ------------------- #
|
||||||
executable(
|
executable(
|
||||||
'draconis++',
|
'draconis++',
|
||||||
sources,
|
sources,
|
||||||
objc_args: objc_args,
|
objc_args: objc_args,
|
||||||
link_args: link_args,
|
link_args: link_args,
|
||||||
dependencies: deps,
|
dependencies: deps,
|
||||||
install: true,
|
install: true,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue