Skip to content

Commit

Permalink
fix includes from file move
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrc6 committed Nov 30, 2024
1 parent 7df4ac6 commit 820d019
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -378,9 +378,9 @@ function(set_glob VAR GLOBBING EXTS DIRECTORY) # ...
list(APPEND LIST_BUT_NOT_GLOB ${file})
endif()
endforeach()
# if(LIST_BUT_NOT_GLOB)
message(AUTHOR_WARNING "Entries only present in ${VAR}: ${LIST_BUT_NOT_GLOB}")
# endif()
if(LIST_BUT_NOT_GLOB)
message(AUTHOR_WARNING "Entries only present in ${VAR}: ${LIST_BUT_NOT_GLOB}")
endif()
set(GLOB_BUT_NOT_LIST)
foreach(file ${GLOB_RESULT})
if(NOT file IN_LIST FILES)
Expand Down
4 changes: 2 additions & 2 deletions src/game/client/components/tclient/bindwheel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#include <engine/shared/config.h>
#include <game/generated/protocol.h>

#include "chat.h"
#include "emoticon.h"
#include "../chat.h"
#include "../emoticon.h"

#include <game/client/animstate.h>
#include <game/client/render.h>
Expand Down
4 changes: 2 additions & 2 deletions src/game/client/components/tclient/tater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#include <engine/shared/config.h>
#include <game/generated/protocol.h>

#include "chat.h"
#include "emoticon.h"
#include "../chat.h"
#include "../emoticon.h"

#include <game/client/animstate.h>
#include <game/client/render.h>
Expand Down

0 comments on commit 820d019

Please sign in to comment.