CMake Error (dev) at /usr/local/Cellar/cmake/3.17.0_1/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:272 (message):
The package name passed to `find_package_handle_standard_args` (Freetype)
does not match the name of the calling package (OwnFreetype). This can
lead to problems in calling code that expects `find_package` result
variables (e.g., `_FOUND`) to follow a certain pattern.
seen in https://github.com/ddnet/ddnet/runs/563277935?check_suite_focus=trueIClient
that you declared in CClient
git checkout 0a9f291
, test itgit worktree add /tmp/bisect
-Weverything
is useless-Wall -Wextra -Werror
is active for ddnet, I think @Learath2-Wall -Wextra
-Werror
on CIset(PLATFORM_CLIENT_LIBS GL GLU X11)
by
find_library(CARBON Carbon)
find_library(COCOA Cocoa)
find_library(OPENGL OpenGL)
find_library(SECURITY Security)
set(PLATFORM_CLIENT_LIBS ${COCOA} ${OPENGL} ${CARBON} ${SECURITY})
CMakeLists.txt
notify
in the CCHat::AddLine
function#if defined(CONF_PLATFORM_MACOSX) || defined(__ANDROID__)
extern "C" int SDL_main(int argc, char **argv_) // ignore_convention
{
const char **argv = const_cast<const char **>(argv_);
#else
int main(int argc, const char **argv) // ignore_convention
{
#endif
CONF_PLATFORM_MACOSX
there#if 0
gui_messagebox
git stash
saves some changes git stash pop
applies them againgit stash
is a stack)
$ uname -a
I use arch btw
| SDL_WINDOW_ALLOW_HIGHDPI
<commit sha>~