feat(client): OsGui functions for linux

This commit is contained in:
phaneron 2024-09-06 23:39:33 -04:00
parent eef37c109d
commit b0566ad8d7
4 changed files with 19 additions and 9 deletions

View file

@ -3,21 +3,21 @@ file(GLOB PRIVATE_SOURCES
"gui/*.cpp"
)
if(WHOA_SYSTEM_WIN)
if (WHOA_SYSTEM_WIN)
file(GLOB WIN_SOURCES
"gui/win/*.cpp"
)
list(APPEND PRIVATE_SOURCES ${WIN_SOURCES})
endif()
if(WHOA_SYSTEM_MAC)
if (WHOA_SYSTEM_MAC)
file(GLOB MAC_SOURCES
"gui/mac/*.cpp"
)
list(APPEND PRIVATE_SOURCES ${MAC_SOURCES})
endif()
if(WHOA_SYSTEM_LINUX)
if (WHOA_SYSTEM_LINUX)
file(GLOB LINUX_SOURCES
"gui/linux/*.cpp"
)