Restructure source tree

This commit is contained in:
rjindael 2023-07-06 15:51:17 -07:00
parent 1dad903967
commit 1d0029e01c
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
29 changed files with 12 additions and 29 deletions

View File

@ -1,34 +1,17 @@
cmake_minimum_required(VERSION 3.4)
project(Engine)
project(RBXNuServer)
project(RBXNuStudio)
project(RBXNuPlayer)
project(player)
project(server)
project(studio)
add_library(Engine STATIC
roblox/engine/RBXNu.cpp
add_executable(player
src/client/player/main.cpp
)
add_executable(RBXNuServer
roblox/server/RBXNuServer.cpp
add_executable(server
src/client/server/main.cpp
)
add_executable(RBXNuStudio
roblox/studio/RBXNuStudio.cpp
)
add_executable(RBXNuPlayer
roblox/player/RBXNuPlayer.cpp
)
target_link_libraries(RBXNuServer
Engine
)
target_link_libraries(RBXNuStudio
Engine
)
target_link_libraries(RBXNuPlayer
Engine
add_executable(studio
src/client/studio/main.cpp
)

View File

@ -2,5 +2,5 @@
int main()
{
printf("Hello World");
printf("Hello world!");
}

View File

@ -2,5 +2,5 @@
int main()
{
printf("Hello World");
printf("Hello world!");
}

View File

@ -2,5 +2,5 @@
int main()
{
printf("Hello World");
printf("Hello world!");
}

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File