Skip to content
Snippets Groups Projects
Commit 2c4dbf67 authored by Janik Zikovsky's avatar Janik Zikovsky
Browse files

Refs #3301: move class util

parent 12852969
No related branches found
No related tags found
No related merge requests found
...@@ -65,8 +65,8 @@ def move_all(subproject, classname, newproject, args): ...@@ -65,8 +65,8 @@ def move_all(subproject, classname, newproject, args):
move_one(subproject, classname, newproject, testfile, newtestfile, args) move_one(subproject, classname, newproject, testfile, newtestfile, args)
# Insert into the cmake list # Insert into the cmake list
add_to_cmake(newproject, classname, args) add_to_cmake(newproject, classname, args, args.dest_subfolder)
remove_from_cmake(subproject, classname, args) remove_from_cmake(subproject, classname, args, args.source_subfolder)
print " Files were removed to Framework/%s/CMakeLists.txt !" % subproject print " Files were removed to Framework/%s/CMakeLists.txt !" % subproject
print " Files were added to Framework/%s/CMakeLists.txt !" % newproject print " Files were added to Framework/%s/CMakeLists.txt !" % newproject
...@@ -78,7 +78,6 @@ def move_all(subproject, classname, newproject, args): ...@@ -78,7 +78,6 @@ def move_all(subproject, classname, newproject, args):
# print # print
#====================================================================== #======================================================================
if __name__ == "__main__": if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Utility to move a Mantid class from one project to another. ' parser = argparse.ArgumentParser(description='Utility to move a Mantid class from one project to another. '
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment