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:
parent
6c131c7ebb
commit
676d8589fc
|
|
@ -1,5 +1,3 @@
|
||||||
project(Common)
|
|
||||||
|
|
||||||
qt_standard_project_setup()
|
qt_standard_project_setup()
|
||||||
qt_add_library(Common STATIC
|
qt_add_library(Common STATIC
|
||||||
Header/GL/Adorn.hpp
|
Header/GL/Adorn.hpp
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
project(Player)
|
|
||||||
|
|
||||||
create_resources(Resource ${CMAKE_BINARY_DIR}/Resources/PlayerResources.hpp)
|
create_resources(Resource ${CMAKE_BINARY_DIR}/Resources/PlayerResources.hpp)
|
||||||
|
|
||||||
set(CMAKE_AUTOMOC ON)
|
set(CMAKE_AUTOMOC ON)
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
project(Server)
|
|
||||||
|
|
||||||
create_resources(Resource ${CMAKE_BINARY_DIR}/Resources/ServerResources.hpp)
|
create_resources(Resource ${CMAKE_BINARY_DIR}/Resources/ServerResources.hpp)
|
||||||
|
|
||||||
add_executable(Server
|
add_executable(Server
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
project(Studio)
|
|
||||||
|
|
||||||
create_resources(Resource ${CMAKE_BINARY_DIR}/Resources/StudioResources.hpp)
|
create_resources(Resource ${CMAKE_BINARY_DIR}/Resources/StudioResources.hpp)
|
||||||
|
|
||||||
set(CMAKE_AUTOMOC ON)
|
set(CMAKE_AUTOMOC ON)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,3 @@
|
||||||
project(Engine)
|
|
||||||
|
|
||||||
|
|
||||||
add_library(Engine STATIC
|
add_library(Engine STATIC
|
||||||
Header/Helpers/Name.hpp
|
Header/Helpers/Name.hpp
|
||||||
Header/Helpers/Strings.hpp
|
Header/Helpers/Strings.hpp
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue