Precompiled header
This commit is contained in:
parent
5b0ffe1365
commit
cb44bd35e7
7 changed files with 53 additions and 0 deletions
|
@ -11,6 +11,9 @@ project "Engine"
|
||||||
language "C++"
|
language "C++"
|
||||||
cppdialect "C++17"
|
cppdialect "C++17"
|
||||||
|
|
||||||
|
pchsource "src/Engine/ltpch.cpp"
|
||||||
|
pchheader "ltpch.h"
|
||||||
|
|
||||||
-- Project Files ---
|
-- Project Files ---
|
||||||
files
|
files
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include "ltpch.h"
|
||||||
#include "Application.h"
|
#include "Application.h"
|
||||||
|
|
||||||
#include "Logger.h"
|
#include "Logger.h"
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include "ltpch.h"
|
||||||
#include "Logger.h"
|
#include "Logger.h"
|
||||||
|
|
||||||
#include <spdlog/sinks/stdout_color_sinks.h>
|
#include <spdlog/sinks/stdout_color_sinks.h>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include "ltpch.h"
|
||||||
#include "LayerStack.h"
|
#include "LayerStack.h"
|
||||||
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include "ltpch.h"
|
||||||
#include "wWindow.h"
|
#include "wWindow.h"
|
||||||
|
|
||||||
#include "Events/KeyboardEvents.h"
|
#include "Events/KeyboardEvents.h"
|
||||||
|
|
1
Engine/src/Engine/ltpch.cpp
Normal file
1
Engine/src/Engine/ltpch.cpp
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#include "ltpch.h"
|
45
Engine/src/Engine/ltpch.h
Normal file
45
Engine/src/Engine/ltpch.h
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
// Engine
|
||||||
|
#include "Base.h"
|
||||||
|
|
||||||
|
// Platform
|
||||||
|
#ifdef _WIN32
|
||||||
|
#define NOMINMAX
|
||||||
|
#include <Windows.h>
|
||||||
|
#undef NOMINMAX
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Containers
|
||||||
|
#include <array>
|
||||||
|
#include <vector>
|
||||||
|
#include <list>
|
||||||
|
#include <set>
|
||||||
|
#include <bitset>
|
||||||
|
#include <map>
|
||||||
|
#include <unordered_map>
|
||||||
|
#include <unordered_set>
|
||||||
|
|
||||||
|
// Miscellaneous
|
||||||
|
#include <algorithm>
|
||||||
|
#include <functional>
|
||||||
|
#include <memory>
|
||||||
|
#include <tuple>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
|
// IO
|
||||||
|
#include <iostream>
|
||||||
|
#include <fstream>
|
||||||
|
#include <sstream>
|
||||||
|
|
||||||
|
// Multi-threading
|
||||||
|
#include <thread>
|
||||||
|
#include <atomic>
|
||||||
|
|
||||||
|
// String
|
||||||
|
#include <string>
|
||||||
|
#include <string_view>
|
||||||
|
|
||||||
|
// C-Libraries
|
||||||
|
#include <time.h>
|
||||||
|
#include <math.h>
|
Loading…
Add table
Reference in a new issue