Skip to content

Commit

Permalink
move libcontroller
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMansolino committed Aug 6, 2020
1 parent 323d923 commit 00b5dc6
Show file tree
Hide file tree
Showing 80 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .atom-build.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@
},
"controller release": {
"cmd": "make",
"cwd": "{PROJECT_PATH}/src/lib/Controller",
"cwd": "{PROJECT_PATH}/src/Controller",
"args": [ "release", "-j$NUMBER_OF_PROCESSOR" ],
"errorMatch": "(?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+):(?<col>\\d+):\\s+(?<message>.+)"
},
"controller debug": {
"cmd": "make",
"cwd": "{PROJECT_PATH}/src/lib/Controller",
"cwd": "{PROJECT_PATH}/src/Controller",
"args": [ "debug", "-j$NUMBER_OF_PROCESSOR" ],
"errorMatch": "(?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+):(?<col>\\d+):\\s+(?<message>.+)"
},
"controller clean": {
"cmd": "make",
"cwd": "{PROJECT_PATH}/src/lib/Controller",
"cwd": "{PROJECT_PATH}/src/Controller",
"args": [ "clean" ]
},
"export doc": {
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ ifeq ($(OSTYPE),windows)
@rm -rf msys64
endif
ifeq ($(OSTYPE),darwin)
@rm -rf Contents/Frameworks Contents/MacOS
@rm -rf Contents/Frameworks Contents/MacOS
endif
@+echo "#"; echo "# * tests *"; echo "#"
@find tests -name .*.cache | xargs rm -f
Expand All @@ -117,7 +117,7 @@ endif
@+echo "#"; echo "# * webots (core) *"; echo "#"
@+make --silent -C src/webots $(TARGET)
@+echo "#"; echo "# * libController *"; echo "#"
@+make --silent -C src/lib/Controller $(TARGET) WEBOTS_HOME="$(WEBOTS_HOME)"
@+make --silent -C src/Controller $(TARGET) WEBOTS_HOME="$(WEBOTS_HOME)"
@+echo "#"; echo "# * resources *";
@+make --silent -C resources $(MAKECMDGOALS) WEBOTS_HOME="$(WEBOTS_HOME)"
@+echo "#"; echo "# * projects *";
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/sources/test_clang_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def test_sources_are_clang_format_compliant(self):
'resources/wren/shaders',
'tests',
'include/wren',
'src/lib/Controller',
'src/Controller',
'src/license/sign',
'src/webots',
'src/wren'
Expand Down
2 changes: 1 addition & 1 deletion tests/sources/test_cppcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def test_sources_with_cppcheck(self):
sourceDirs = [
'src/webots',
'src/wren',
'src/lib/Controller',
'src/Controller',
'resources/languages/cpp',
'resources/projects'
]
Expand Down
2 changes: 1 addition & 1 deletion tests/sources/test_license.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class TestLicense(unittest.TestCase):
def setUp(self):
"""Get all the source files which require a license check."""
directories = [
'src/lib/Controller',
'src/Controller',
'src/webots',
'src/wren',
'projects',
Expand Down
2 changes: 1 addition & 1 deletion tests/sources/test_matlab_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def setUp(self):
'EXPORTS'
]
self.functions = []
filename = os.environ['WEBOTS_HOME'] + '/src/lib/Controller/Controller.def'
filename = os.environ['WEBOTS_HOME'] + '/src/Controller/Controller.def'
self.assertTrue(
os.path.isfile(filename),
msg='Missing "%s" file.' % filename
Expand Down

0 comments on commit 00b5dc6

Please sign in to comment.