File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ ifeq ($(OS), Windows_NT)
24
24
# Set Windows macros
25
25
platform := Windows
26
26
CXX ?= g++
27
- linkFlags += -Wl,--allow-multiple-definition -pthread -lopengl32 -lgdi32 -lwinmm -mwindows - static -static-libgcc -static-libstdc++
27
+ linkFlags += -Wl,--allow-multiple-definition -pthread -lopengl32 -lgdi32 -lwinmm -static -static-libgcc -static-libstdc++
28
28
THEN := &&
29
29
PATHSEP := \$(BLANK)
30
30
MKDIR := -mkdir -p
Original file line number Diff line number Diff line change 1
1
#include < raylib-cpp.hpp>
2
+ #include < iostream>
2
3
3
4
int main () {
4
5
@@ -11,6 +12,9 @@ int main() {
11
12
12
13
SetTargetFPS (60 );
13
14
15
+ // Demostrate logging
16
+ std::cout << " Hello World!" << std::endl;
17
+
14
18
// Main game loop
15
19
while (!w.ShouldClose ()) // Detect window close button or ESC key
16
20
{
You can’t perform that action at this time.
0 commit comments