You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My environment is Cmake + MinGW on Windows.
It reported 2 kinds of bugs:
1.Some functions like sinf(); cosf(); was not declared in this scope.
2.Can not convert 'wchar_t*' to 'LPCSTR'
Here are my solutions:
1.Add #include <math.h> to sourse code
2.Change funtion WriteConsoleOutputCharacter() to WriteConsoleOutputCharacterW() at line 279
The text was updated successfully, but these errors were encountered:
My environment is Cmake + MinGW on Windows.
It reported 2 kinds of bugs:
1.Some functions like sinf(); cosf(); was not declared in this scope.
2.Can not convert 'wchar_t*' to 'LPCSTR'
Here are my solutions:
1.Add
#include <math.h>
to sourse code2.Change funtion
WriteConsoleOutputCharacter()
toWriteConsoleOutputCharacterW()
at line 279The text was updated successfully, but these errors were encountered: