Integrate all the progress into master #6

Merged
jaby merged 595 commits from ToolBox into main 2025-01-01 13:17:44 +00:00
3 changed files with 8 additions and 4 deletions
Showing only changes of commit f47bd60003 - Show all commits

View File

@ -1,7 +1,5 @@
//#pragma once
//TODO: Why is pragma once not working?!
#include "../dummy_default_config.hpp"
//TODO: Fix IntelliSense
struct CustomConfiguration : public DefaultConfiguration {
struct Test {
static constexpr const char* string() {

View File

@ -0,0 +1,7 @@
#pragma once
#ifdef __INTELLISENSE__
// This provides a dummy struct so IntelliSense is happy
struct DefaultConfiguration {
};
#endif //! __INTELLISENSE__

View File

@ -1,5 +1,4 @@
JABY_ENGINE_CONFIG_DIR = $(JABY_ENGINE_DIR)config
ifdef CUSTOM_CONFIG
# TODO: Use same header for -I and -imacros?
CCFLAGS += -I$(JABY_ENGINE_CONFIG_DIR)/$(CUSTOM_CONFIG) -imacros $(JABY_ENGINE_CONFIG_DIR)/$(CUSTOM_CONFIG)/jabyengine_custom_config.hpp
endif