mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Display the EULA (fetched from masterserver), which the end user MUST accept before they can make use of the multiplayer features of R5Reloaded. NOTE: user doesn't need to agree to this to use the listenserver.
25 lines
488 B
CMake
25 lines
488 B
CMake
cmake_minimum_required( VERSION 3.16 )
|
|
add_module( "lib" "vgui" "vpc" ${FOLDER_CONTEXT} TRUE TRUE )
|
|
|
|
start_sources()
|
|
|
|
add_sources( SOURCE_GROUP "Runtime"
|
|
"vgui.h"
|
|
"vgui_baseui_interface.cpp"
|
|
"vgui_baseui_interface.h"
|
|
)
|
|
|
|
add_sources( SOURCE_GROUP "Debug"
|
|
"vgui_debugpanel.cpp"
|
|
"vgui_debugpanel.h"
|
|
"vgui_fpspanel.cpp"
|
|
"vgui_fpspanel.h"
|
|
)
|
|
|
|
add_sources( SOURCE_GROUP "vgui_controls"
|
|
"vgui_controls/RichText.cpp"
|
|
"vgui_controls/RichText.h"
|
|
)
|
|
|
|
end_sources()
|