Skip to content

Commit

Permalink
Add missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceManiac committed Jan 21, 2025
1 parent 6bfecfe commit f247537
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/loonyland/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ HamSandwich_add_executable(
loonyland
SOURCES ${sources}
)
if (MSVC AND CMAKE_BUILD_TYPE STREQUAL "Debug")
if (MSVC AND NOT CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_BUILD_TYPE STREQUAL "Debug")
target_link_options(loonyland PRIVATE /ZI /INCREMENTAL)
target_compile_options(loonyland PRIVATE /ZI)
endif()
Expand Down
1 change: 1 addition & 0 deletions source/sleepless/display.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "winpch.h"
#include "display.h"
#include <algorithm>
#include "particle.h"
#include "jamulfmv.h"
#include "game.h"
Expand Down
1 change: 1 addition & 0 deletions source/sleepless/guy.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "winpch.h"
#include "guy.h"
#include <string>
#include "player.h"
#include "intface.h"
#include "editor.h"
Expand Down
3 changes: 2 additions & 1 deletion source/sleepless/items.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "winpch.h"
#include "items.h"
#include <ctype.h>
#include <algorithm>
#include "display.h"
#include "player.h"
#include "repair.h"
Expand All @@ -10,7 +12,6 @@
#include "worldstitch.h"
#include "journal.h"
#include "customworld.h"
#include <ctype.h>
#include "math_extras.h"
#include "log.h"
#include "archipelago.h"
Expand Down
1 change: 1 addition & 0 deletions source/sleepless/map.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "winpch.h"
#include "map.h"
#include <string>
#include "display.h"
#include "world.h"
#include "game.h"
Expand Down
1 change: 1 addition & 0 deletions source/sleepless/pause.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "pause.h"
#include <string>
#include "player.h"
#include "progress.h"
#include "editor.h"
Expand Down

0 comments on commit f247537

Please sign in to comment.