Examples: Fix MinGW detection in makefiles. Fix example_null build due to missing IME input libs. (#2590)

This commit is contained in:
Rokas Kupstys
2021-02-24 10:26:13 +02:00
committed by ocornut
parent 9b32f7bf2d
commit 3f5bb5939a
8 changed files with 14 additions and 14 deletions

View File

@ -68,7 +68,7 @@ jobs:
#include "examples/example_null/main.cpp"
EOF
g++ -I. -Wall -Wformat -o example_single_file.exe example_single_file.cpp
g++ -I. -Wall -Wformat -o example_single_file.exe example_single_file.cpp -limm32
- name: Build example_null (with IMGUI_DISABLE_WIN32_FUNCTIONS)
shell: bash
@ -81,7 +81,7 @@ jobs:
#include "examples/example_null/main.cpp"
EOF
g++ -I. -Wall -Wformat -o example_single_file.exe example_single_file.cpp
g++ -I. -Wall -Wformat -o example_single_file.exe example_single_file.cpp -limm32
- name: Build example_null (as DLL)
shell: cmd