diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fcadb2c --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text eol=lf diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 2e7b532..0000000 --- a/.gitmodules +++ /dev/null @@ -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 diff --git a/meson.build b/meson.build index 4f7a035..467546f 100644 --- a/meson.build +++ b/meson.build @@ -1,179 +1,179 @@ -# ----------------------- # -# Project Configuration # -# ----------------------- # -project( - 'draconis++', - 'cpp', - version: '0.1.0', - default_options: [ - 'default_library=static', - 'warning_level=everything', - 'buildtype=debugoptimized', - ], -) - -cpp = meson.get_compiler('cpp') -host_system = host_machine.system() - -# ------------------------ # -# Compiler Configuration # -# ------------------------ # -common_warning_flags = [ - '-Wno-c++20-compat', - '-Wno-c++20-extensions', - '-Wno-c++98-compat', - '-Wno-c++98-compat-pedantic', - '-Wno-disabled-macro-expansion', - '-Wno-missing-prototypes', - '-Wno-padded', - '-Wno-pre-c++20-compat-pedantic', - '-Wunused-function', -] - -common_cpp_flags = { - 'common': [ - '-fno-strict-enums', - '-fvisibility=hidden', - '-fvisibility-inlines-hidden', - '-std=c++26', - ], - 'msvc': [ - '-DNOMINMAX', '/Zc:__cplusplus', - '/std:c++latest', - ], - 'unix_extra': [ - '-march=native', - '-nostdlib++', - ], - 'windows_extra': '-DCURL_STATICLIB', -} - -# Configure Objective-C++ for macOS -if host_system == 'darwin' - add_languages('objcpp', native: false) - objcpp = meson.get_compiler('objcpp') - objcpp_flags = common_warning_flags + [ - '-Wno-switch-default', - '-std=c++2b', - '-fvisibility=hidden', - '-fvisibility-inlines-hidden', - ] - add_project_arguments(objcpp.get_supported_arguments(objcpp_flags), language: 'objcpp') -endif - -# Apply C++ compiler arguments -if cpp.get_id() in ['msvc', 'clang-cl'] - common_cpp_args = common_cpp_flags['msvc'] - if cpp.get_id() == 'clang-cl' - common_cpp_args += common_warning_flags + common_cpp_flags['common'] - endif -else - common_cpp_args = common_warning_flags + common_cpp_flags['common'] + common_cpp_flags['unix_extra'] - if host_system == 'windows' - common_cpp_args += common_cpp_flags['windows_extra'] - endif - common_cpp_args = cpp.get_supported_arguments(common_cpp_args) -endif - -add_project_arguments(common_cpp_args, language: 'cpp') - -# ------- # -# Files # -# ------- # -base_sources = files('src/config/config.cpp', 'src/config/weather.cpp', 'src/main.cpp') - -platform_sources = { - 'linux': ['src/os/linux.cpp', 'src/os/linux/issetugid_stub.cpp'], - 'freebsd': ['src/os/freebsd.cpp'], - 'darwin': ['src/os/macos.cpp', 'src/os/macos/bridge.mm'], - 'windows': ['src/os/windows.cpp'], -} - -sources = base_sources + files(platform_sources.get(host_system, [])) - -# --------------------- # -# Dependencies Config # -# --------------------- # -common_deps = [ - dependency('fmt', include_type: 'system', static: true), - dependency('libcurl', include_type: 'system', static: true), - dependency('tomlplusplus', include_type: 'system', static: true), - dependency('glaze', include_type: 'system'), - dependency('openssl', include_type: 'system', static: true, required: false), -] - -# Platform-specific dependencies -platform_deps = [] - -if host_system == 'darwin' - platform_deps += [ - dependency( - 'appleframeworks', - modules: ['foundation', 'mediaplayer', 'systemconfiguration'], - static: true, - ), - dependency('iconv'), - ] -elif host_system == 'windows' - platform_deps += [ - cpp.find_library('dwmapi'), - cpp.find_library('windowsapp'), - ] -elif host_system == 'linux' or host_system == 'freebsd' - platform_deps += [ - dependency('SQLiteCpp'), - dependency('x11'), - dependency('xcb'), - dependency('xau'), - dependency('xdmcp'), - dependency('wayland-client'), - dependency('dbus-1', include_type: 'system'), - ] -endif - -# FTXUI configuration -ftxui_components = ['ftxui::screen', 'ftxui::dom', 'ftxui::component'] -ftxui_dep = dependency( - 'ftxui', - modules: ftxui_components, - include_type: 'system', - static: true, - required: false, -) - -if not ftxui_dep.found() - ftxui_dep = declare_dependency( - dependencies: [ - dependency('ftxui-dom', fallback: ['ftxui', 'dom_dep']), - dependency('ftxui-screen', fallback: ['ftxui', 'screen_dep']), - dependency('ftxui-component', fallback: ['ftxui', 'component_dep']), - ], - ) -endif - -# Combine all dependencies -deps = common_deps + platform_deps + ftxui_dep - -# ------------------------- # -# Link/ObjC Configuration # -# ------------------------- # -link_args = [] -objc_args = [] - -if host_system == 'darwin' - objc_args += ['-fobjc-arc'] -elif cpp.get_id() == 'clang' - link_args += ['-static-libgcc', '-static-libstdc++'] -endif - -# ------------------- # -# Executable Target # -# ------------------- # -executable( - 'draconis++', - sources, - objc_args: objc_args, - link_args: link_args, - dependencies: deps, - install: true, -) +# ----------------------- # +# Project Configuration # +# ----------------------- # +project( + 'draconis++', + 'cpp', + version: '0.1.0', + default_options: [ + 'default_library=static', + 'warning_level=everything', + 'buildtype=debugoptimized', + ], +) + +cpp = meson.get_compiler('cpp') +host_system = host_machine.system() + +# ------------------------ # +# Compiler Configuration # +# ------------------------ # +common_warning_flags = [ + '-Wno-c++20-compat', + '-Wno-c++20-extensions', + '-Wno-c++98-compat', + '-Wno-c++98-compat-pedantic', + '-Wno-disabled-macro-expansion', + '-Wno-missing-prototypes', + '-Wno-padded', + '-Wno-pre-c++20-compat-pedantic', + '-Wunused-function', +] + +common_cpp_flags = { + 'common': [ + '-fno-strict-enums', + '-fvisibility=hidden', + '-fvisibility-inlines-hidden', + '-std=c++26', + ], + 'msvc': [ + '-DNOMINMAX', '/Zc:__cplusplus', + '/std:c++latest', + ], + 'unix_extra': [ + '-march=native', + '-nostdlib++', + ], + 'windows_extra': '-DCURL_STATICLIB', +} + +# Configure Objective-C++ for macOS +if host_system == 'darwin' + add_languages('objcpp', native: false) + objcpp = meson.get_compiler('objcpp') + objcpp_flags = common_warning_flags + [ + '-Wno-switch-default', + '-std=c++2b', + '-fvisibility=hidden', + '-fvisibility-inlines-hidden', + ] + add_project_arguments(objcpp.get_supported_arguments(objcpp_flags), language: 'objcpp') +endif + +# Apply C++ compiler arguments +if cpp.get_id() in ['msvc', 'clang-cl'] + common_cpp_args = common_cpp_flags['msvc'] + if cpp.get_id() == 'clang-cl' + common_cpp_args += common_warning_flags + common_cpp_flags['common'] + endif +else + common_cpp_args = common_warning_flags + common_cpp_flags['common'] + common_cpp_flags['unix_extra'] + if host_system == 'windows' + common_cpp_args += common_cpp_flags['windows_extra'] + endif + common_cpp_args = cpp.get_supported_arguments(common_cpp_args) +endif + +add_project_arguments(common_cpp_args, language: 'cpp') + +# ------- # +# Files # +# ------- # +base_sources = files('src/config/config.cpp', 'src/config/weather.cpp', 'src/main.cpp') + +platform_sources = { + 'linux': ['src/os/linux.cpp', 'src/os/linux/issetugid_stub.cpp'], + 'freebsd': ['src/os/freebsd.cpp'], + 'darwin': ['src/os/macos.cpp', 'src/os/macos/bridge.mm'], + 'windows': ['src/os/windows.cpp'], +} + +sources = base_sources + files(platform_sources.get(host_system, [])) + +# --------------------- # +# Dependencies Config # +# --------------------- # +common_deps = [ + dependency('fmt', include_type: 'system', static: true), + dependency('libcurl', include_type: 'system', static: true), + dependency('tomlplusplus', include_type: 'system', static: true), + dependency('glaze', include_type: 'system'), + dependency('openssl', include_type: 'system', static: true, required: false), +] + +# Platform-specific dependencies +platform_deps = [] + +if host_system == 'darwin' + platform_deps += [ + dependency( + 'appleframeworks', + modules: ['foundation', 'mediaplayer', 'systemconfiguration'], + static: true, + ), + dependency('iconv'), + ] +elif host_system == 'windows' + platform_deps += [ + cpp.find_library('dwmapi'), + cpp.find_library('windowsapp'), + ] +elif host_system == 'linux' or host_system == 'freebsd' + platform_deps += [ + dependency('SQLiteCpp'), + dependency('x11'), + dependency('xcb'), + dependency('xau'), + dependency('xdmcp'), + dependency('wayland-client'), + dependency('dbus-1', include_type: 'system'), + ] +endif + +# FTXUI configuration +ftxui_components = ['ftxui::screen', 'ftxui::dom', 'ftxui::component'] +ftxui_dep = dependency( + 'ftxui', + modules: ftxui_components, + include_type: 'system', + static: true, + required: false, +) + +if not ftxui_dep.found() + ftxui_dep = declare_dependency( + dependencies: [ + dependency('ftxui-dom', fallback: ['ftxui', 'dom_dep']), + dependency('ftxui-screen', fallback: ['ftxui', 'screen_dep']), + dependency('ftxui-component', fallback: ['ftxui', 'component_dep']), + ], + ) +endif + +# Combine all dependencies +deps = common_deps + platform_deps + ftxui_dep + +# ------------------------- # +# Link/ObjC Configuration # +# ------------------------- # +link_args = [] +objc_args = [] + +if host_system == 'darwin' + objc_args += ['-fobjc-arc'] +elif cpp.get_id() == 'clang' + link_args += ['-static-libgcc', '-static-libstdc++'] +endif + +# ------------------- # +# Executable Target # +# ------------------- # +executable( + 'draconis++', + sources, + objc_args: objc_args, + link_args: link_args, + dependencies: deps, + install: true, +)