reactivemarkets / toolbox-cpp

The Reactive C++ Toolbox is an open source library of C++20 components designed for efficient, asynchronous network applications on the Linux platform.
https://reactivemarkets.github.io/toolbox-cpp/
Other
21 stars 20 forks source link

fix(build): cmake modules not detecting debug builds #134

Closed markaylett closed 3 years ago

markaylett commented 3 years ago

CMake's CMAKE_BUILD_TYPE is case sensitive. Some CMake modules check for debug build types in a case-sensitive manner. Reactive builds should not convert this variable to upper case.

DEV-3249