r5sdk/r5dev/vgui/CMakeLists.txt
Kawe Mazidjatari 22c82d6f1d EULA dialog implementation
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.
2024-04-05 16:26:18 +02:00

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()