From 26bbbf09ec81a521f319c32879c460028e2c1d51 Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 29 Nov 2018 15:14:29 +0000 Subject: [PATCH] Updated CMakeLists.txt to compile the entity system --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 745d441..f5c0c2a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,9 +31,10 @@ include_directories(${BuildDIR}/ ${IncludeDIR}) file(GLOB_RECURSE SourceFiles ${SrcDIR}/* ${EngineDIR}/* - ${EngineDIR}/renderengine/* ${EngineDIR}/input/* + ${EngineDIR}/renderengine/* ${EngineDIR}/resourcemanager/* + ${EngineDIR}/entitymanager/* ) add_executable(${BuildDIR}/${EXEName} ${SourceFiles})