use static linking
This commit is contained in:
parent
15c49f6626
commit
aada1f9636
|
@ -3,7 +3,7 @@ project(quark CXX)
|
|||
FetchContent_MakeAvailable(spdlog glfw3)
|
||||
add_subdirectory(vendor)
|
||||
|
||||
add_library(quark SHARED)
|
||||
add_library(quark STATIC)
|
||||
|
||||
target_sources(quark
|
||||
PRIVATE
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#include "quark/Core.hpp"
|
||||
#include "quark/Input.hpp"
|
||||
#include "quark/imgui/ImGuiLayer.hpp"
|
||||
#include <quark.hpp>
|
||||
#include <spdlog/spdlog.h>
|
||||
|
||||
namespace qk {
|
||||
|
@ -11,7 +12,7 @@ namespace qk {
|
|||
instance = this;
|
||||
|
||||
window = Window::Create();
|
||||
window->SetEventCallback(std::bind(&Application::OnEvent, this, std::placeholders::_1));
|
||||
window->SetEventCallback(BIND_EVENT_CB(Application::OnEvent));
|
||||
|
||||
uiLayer = std::make_unique<ImGuiLayer>();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue