修改项目为Cmake管理,添加spdlog和SDL两个库

This commit is contained in:
2025-04-17 17:25:14 +08:00
parent 6d56a40ab0
commit aa48bc82d8
18 changed files with 174 additions and 296 deletions

View File

@ -1,5 +1,6 @@
#include <Hazel.h>
class Sandbox : public Hazel::Application
{
public:
@ -10,14 +11,9 @@ private:
};
Sandbox::Sandbox()
{
Sandbox::Sandbox() = default;
}
Sandbox::~Sandbox()
{
}
Sandbox::~Sandbox() = default;
Hazel::Application* Hazel::CreateApplication() {
return new Sandbox();