Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

InputSource, replaces #558 #749

Merged
merged 9 commits into from
Mar 12, 2025
Next Next commit
InputSource: add dep to DynamicOutput
Input Source: add windows platform code
  • Loading branch information
Yangff authored and narknon committed Mar 7, 2025
commit e331af9d5dddc277718013e2fd66b9687f71aa68
10 changes: 9 additions & 1 deletion deps/first/Input/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,12 @@ target(projectName)
add_includedirs("include", { public = true })
add_headerfiles("include/**.hpp")

add_files("src/**.cpp")
add_files("src/**.cpp|Platform/**.cpp")

add_deps("DynamicOutput")

if is_plat("windows") then
add_files("src/Platform/Win32AsyncInputSource.cpp")
add_files("src/Platform/GLFW3InputSource.cpp")
add_files("src/Platform/QueueInputSource.cpp")
end