From 21e9d57e4ca661bb0790b15920db95b372688995 Mon Sep 17 00:00:00 2001 From: Mohcine Chraibi <m.chraibi@fz-juelich.de> Date: Sun, 6 Mar 2016 15:45:22 +0100 Subject: [PATCH] Add missing files to cmakefile --- .gitignore | 1 + .idea/modules.xml | 8 -------- CMakeLists.txt | 6 ++++++ 3 files changed, 7 insertions(+), 8 deletions(-) delete mode 100644 .idea/modules.xml diff --git a/.gitignore b/.gitignore index 00b34e4..56a89b0 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ build/ Makefile bin/ ui_* +.idea/ diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 5bf9e88..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="4"> - <component name="ProjectModuleManager"> - <modules> - <module fileurl="file://$PROJECT_DIR$/.idea/jupedsim.iml" filepath="$PROJECT_DIR$/.idea/jupedsim.iml" /> - </modules> - </component> -</project> \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 69f0f49..80628b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -109,6 +109,9 @@ set( SRCS src/jpsconnection.cpp dxflib/src/dl_writer_ascii.cpp dxflib/src/dl_dxf.cpp + src/UndoFramework/action.cpp + src/UndoFramework/actionstack.cpp + src/UndoFramework/lineaction.cpp ) # all header files that should be treated with moc set( HDR @@ -139,6 +142,9 @@ set( HDR dxflib/src/dl_creationadapter.h dxflib/src/dl_codes.h dxflib/src/dl_attributes.h + src/UndoFramework/action.h + src/UndoFramework/actionstack.h + src/UndoFramework/lineaction.h ) -- GitLab