txtsd
txtsd
@678435021 They mean between the icon and the text, not between buttons.
It crashed when I tried. It worked after deleting the `meta` directory and the `metacache` file.
> ``` > Windows Registry Editor Version 5.00 > > [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\shell\Windows Terminal] > @="Open in Windows &Terminal" > "Icon"="W:\\scoop\\apps\\windows-terminal\\current\\wt.exe" > [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\shell\Windows Terminal\command] > @="\"W:\\scoop\\apps\\windows-terminal\\current\\wt.exe\" -d \"%V\"" > > [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\shell\Windows Terminal]...
Is this a Qt problem or a tomlplusplus problem?
Uh I think you forgor to push the changes :skull:
I'd suggest `GPL-3.0-only` to avoid any unwanted changes that might be introduced in a newer version of the GPL. These might help you make a decision: https://choosealicense.com https://choosealicense.com/licenses/
Once @relt-1 decides on one, we can make a PR.
Where do I stick the Werror flag to test compilation?
> > Where do I stick the WError flag to test compilation? > > On the CMake configuration call, you can set other flags with something like `-DCMAKE_CXX_FLAGS="-Werror=odr $CMAKE_CXX_FLAGS"` I...
Could be correlated to another flag in there. This was my complete cmake config for reference: `cmake -S . -B build -DLauncher_BUILD_PLATFORM=Linux -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=install -DENABLE_LTO=ON -DLauncher_QT_VERSION_MAJOR=6 -DBUILD_TESTING=ON -DCMAKE_CXX_FLAGS="-Werror=odr $CMAKE_CXX_FLAGS" -G...