We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93a2d3e commit e331af9Copy full SHA for e331af9
deps/first/Input/xmake.lua
@@ -9,4 +9,12 @@ target(projectName)
9
add_includedirs("include", { public = true })
10
add_headerfiles("include/**.hpp")
11
12
- add_files("src/**.cpp")
+ add_files("src/**.cpp|Platform/**.cpp")
13
+
14
+ add_deps("DynamicOutput")
15
16
+ if is_plat("windows") then
17
+ add_files("src/Platform/Win32AsyncInputSource.cpp")
18
+ add_files("src/Platform/GLFW3InputSource.cpp")
19
+ add_files("src/Platform/QueueInputSource.cpp")
20
+ end
0 commit comments