diff --git a/CMakeLists.txt b/CMakeLists.txt index 32908384..f80a147a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,18 +11,15 @@ project(Dawn VERSION 1.0) set(GAME_NAME DawnGame) set(GAME_VERSION 1.0) -set(TARGET_GROUP production) ##################################### LIBS ##################################### add_subdirectory(lib) add_subdirectory(src) -if(TARGET_GROUP STREQUAL production) - add_subdirectory(client) -elseif(TARGET_GROUP STREQUAL test) +if(TARGET_GROUP STREQUAL test) add_subdirectory(test) else() - message(FATAL_ERROR "Invalid Target Type") + add_subdirectory(client) endif() #################################### ASSETS ####################################