Skip to content
#

cmake

Here are 3,750 public repositories matching this topic...

duncanspumpkin
duncanspumpkin commented Feb 14, 2021

We currently use a macro for writing down a money amount as a literal. We should move to a more modern C++ representation with a user defined literal like the below:

constexpr money32 operator"" _GBP(long double money)
{
    return money * 10;
}

static_assert(MONEY(2, 40) == 2.40_GBP);

Go through the codebase and replace all MONEY macro uses with the equivalent version. You m

jgsogo
jgsogo commented Feb 26, 2021

When searching for a recipe-revision that doesn't exist, the error message can be improved

conan search zlib/1.2.11@#58dde97face18c9c280e2d6093c45d15 -r conan-center
ERROR: Not found: https://conan.bintray.com/v2/conans/zlib/1.2.11/_/_/revisions/58dde97face18c9c280e2d6093c45d15/files/conanmanifest.txt. [Remote: conan-center]

Searching using recipe-revision for a reference that doe

SeerLite
SeerLite commented Feb 17, 2021

Context
Stuff like the server host name and port are not intuitive to find at all. Right now I find it easier to open the Connect menu and click Edit on the server to get the information, while the actual Information menu should show this a lot clearer.

Describe the feature you have in mind
Improve the readability of the Information menu/dialog. Show information important to the user

warzone2100

Improve this page

Add a description, image, and links to the cmake topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cmake topic, visit your repo's landing page and select "manage topics."

Learn more