Skip to content

Commit

Permalink
remove FilesystemContents.h from git and do #error if somebody doesn'…
Browse files Browse the repository at this point in the history
…t have it (people don't read build instructions and forget to run generate.bat, then run into issues with outdated file that was checked into git)
  • Loading branch information
p0358 committed Jul 30, 2024
1 parent 3b506fe commit bdc6f03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions bmedll/FileSystemManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
#endif

#ifdef READ_FROM_BSP
#if __has_include("FilesystemContents.h")
#include "FilesystemContents.h"
#else
#error FilesystemContents.h is missing, did you forget to run generate.bat?!
#endif
std::unordered_set<std::string> fileSystemContentsSet{ FILES_COMMA_SEPARATED };
//std::set<std::string> fileSystemContentsBlockedFromCacheSet{};
#endif
Expand Down
3 changes: 0 additions & 3 deletions bmedll/FilesystemContents.h

This file was deleted.

0 comments on commit bdc6f03

Please sign in to comment.