File tree Expand file tree Collapse file tree 4 files changed +31
-0
lines changed
Expand file tree Collapse file tree 4 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 111111[submodule "third_party/cpplint "]
112112 path = third_party/cpplint
113113 url = https://github.com/cpplint/cpplint.git
114+ [submodule "third_party/asio "]
115+ path = third_party/asio
116+ url = https://github.com/chriskohlhoff/asio.git
Original file line number Diff line number Diff line change @@ -303,6 +303,7 @@ workspace("xenia")
303303 configurations ({" Checked" , " Debug" , " Release" })
304304
305305 include (" third_party/aes_128.lua" )
306+ include (" third_party/asio.lua" )
306307 include (" third_party/capstone.lua" )
307308 include (" third_party/dxbc.lua" )
308309 include (" third_party/discord-rpc.lua" )
Original file line number Diff line number Diff line change 1+ group (" third_party" )
2+ project (" asio" )
3+ uuid (" a5f06be0-9c7d-4e8f-b2a1-3d4c5e6f7890" )
4+ kind (" Utility" )
5+ language (" C++" )
6+
7+ includedirs ({
8+ " asio/include" ,
9+ })
10+
11+ defines ({
12+ " ASIO_STANDALONE" ,
13+ " ASIO_NO_DEPRECATED" ,
14+ })
15+
16+ filter (" platforms:Windows" )
17+ defines ({
18+ " _WIN32_WINNT=0x0A00" , -- Windows 10+
19+ })
20+ filter ({})
21+
22+ files ({
23+ " asio/asio/include/asio.hpp" ,
24+ })
25+
26+ warnings (" Off" )
You can’t perform that action at this time.
0 commit comments