Skip to content

Commit

Permalink
Merge pull request #551 from tiltedphoques/fix/build
Browse files Browse the repository at this point in the history
Fix build
  • Loading branch information
RobbeBryssinck committed Jan 3, 2023
2 parents 177a61b + 73e803c commit c359d5c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Code/tp_process/main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

#include <windows.h>
#include <OverlayApp.hpp>
#include <OverlayProc.hpp>
#include "ProcessHandler.h"

int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
Expand Down
2 changes: 1 addition & 1 deletion Libraries/TiltedUI
13 changes: 11 additions & 2 deletions xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,26 @@ add_requires(

add_requireconfs("cpp-httplib", {configs = {ssl = true}})
add_requireconfs("sentry-native", { configs = { backend = "crashpad" } })
--[[
add_requireconfs("magnum", { configs = { sdl2 = true }})
add_requireconfs("magnum-integration", { configs = { imgui = true }})
add_requireconfs("magnum-integration.magnum", { configs = { sdl2 = true }})
add_requireconfs("magnum-integration.imgui", { override = true })
--]]

if is_plat("windows") then
add_requires(
"discord",
"imgui",
"imgui"
)
--[[
add_requires(
"discord",
"imgui",
"magnum",
"magnum-integration")
"magnum-integration"
)
--]]
end

before_build(function (target)
Expand Down

0 comments on commit c359d5c

Please sign in to comment.