remove nested cmake project decls

each project doesn't have to be a PROJECT project per se; i.e. they don't need to be declared as such within CMake.
the only project should be RNR
This commit is contained in:
rjindael 2023-07-11 23:43:48 -07:00
parent 6c131c7ebb
commit 676d8589fc
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
5 changed files with 0 additions and 11 deletions

View File

@ -1,5 +1,3 @@
project(Common)
qt_standard_project_setup()
qt_add_library(Common STATIC
Header/GL/Adorn.hpp

View File

@ -1,5 +1,3 @@
project(Player)
create_resources(Resource ${CMAKE_BINARY_DIR}/Resources/PlayerResources.hpp)
set(CMAKE_AUTOMOC ON)

View File

@ -1,5 +1,3 @@
project(Server)
create_resources(Resource ${CMAKE_BINARY_DIR}/Resources/ServerResources.hpp)
add_executable(Server

View File

@ -1,5 +1,3 @@
project(Studio)
create_resources(Resource ${CMAKE_BINARY_DIR}/Resources/StudioResources.hpp)
set(CMAKE_AUTOMOC ON)

View File

@ -1,6 +1,3 @@
project(Engine)
add_library(Engine STATIC
Header/Helpers/Name.hpp
Header/Helpers/Strings.hpp