use static linking

This commit is contained in:
lauchmelder 2025-01-07 20:27:28 +01:00
parent 15c49f6626
commit aada1f9636
2 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -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>();
}