mirror of
https://github.com/iriselia/xgmsv.git
synced 2025-04-04 15:58:26 +08:00
21 lines
270 B
CMake
21 lines
270 B
CMake
SET( DEFINE
|
|
)
|
|
SET( INCLUDE
|
|
asio
|
|
docopt
|
|
imgui
|
|
simple_web_server
|
|
)
|
|
SET( LINK
|
|
asio
|
|
docopt
|
|
imgui
|
|
simple_web_server
|
|
)
|
|
create_project(STATIC DEFINE INCLUDE LINK)
|
|
|
|
if(MSVC)
|
|
add_definitions(/await)
|
|
add_definitions(/experimental:module)
|
|
add_definitions(/std:c++latest)
|
|
endif() |