Skip to content

Commit

Permalink
Refactor CMake
Browse files Browse the repository at this point in the history
  • Loading branch information
datacrystals committed Aug 31, 2022
1 parent b0239ee commit e5c9b6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ ERS_CLASS_ModelImporter::ERS_CLASS_ModelImporter(ERS_STRUCT_SystemUtils* SystemU
ImportThread_ = std::thread(&ERS_CLASS_ModelImporter::ImportThread, this);
SystemUtils_->Logger_->Log("Started Asset Import Thread", 3);

ERS_ModelWriter_ = std::make_unique<ERS_CLASS_ModelWriter>(
SystemUtils->Logger_.get(),
SystemUtils->ERS_IOSubsystem_.get()
);


}


Expand Down
7 changes: 0 additions & 7 deletions Source/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
#include <ERS_SceneManager.h>

#include <ERS_InputOutputSubsystem.h>
#include <ERS_ModelWriter.h>
#include <ERS_FramerateManager.h>
#include <ERS_ProjectLoader.h>
#include <ERS_ProjectManager.h>
Expand Down Expand Up @@ -104,12 +103,6 @@ int main(int NumArguments, char** ArguemntValues) {
*SystemUtils->LocalSystemConfiguration_.get(),
SystemUtils->Arguments_
);

SystemUtils->ERS_ModelWriter_ = std::make_unique<ERS_CLASS_ModelWriter>(
SystemUtils->Logger_.get(),
SystemUtils->ERS_IOSubsystem_.get()
);

SystemUtils->ERS_CLASS_HardwareInformation_ = std::make_unique<ERS_CLASS_HardwareInformation>(
SystemUtils->Logger_.get(),
*SystemUtils->LocalSystemConfiguration_.get()
Expand Down

0 comments on commit e5c9b6d

Please sign in to comment.