Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
robotran
mbsysc
Commits
6c26f021
Commit
6c26f021
authored
Sep 09, 2019
by
Olivier Lantsoght
Browse files
[Ctypes][CMake] error in output path, small help in debug.
parent
9be600a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
MBsysC/CMakeLists.txt
View file @
6c26f021
...
...
@@ -60,8 +60,8 @@ if (FLAG_INTERFACE_CTYPES)
set
(
EXECUTABLE_OUTPUT_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/mbs_interface/MBsysPy/libs64/darwin
)
set
(
LIBRARY_OUTPUT_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/mbs_interface/MBsysPy/libs64/darwin
)
else
()
set
(
EXECUTABLE_OUTPUT_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/mbs_interface/MBsysPy/libs64/
darwin
)
set
(
LIBRARY_OUTPUT_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/mbs_interface/MBsysPy/libs64/
darwin
)
set
(
EXECUTABLE_OUTPUT_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/mbs_interface/MBsysPy/libs64/
linux
)
set
(
LIBRARY_OUTPUT_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/mbs_interface/MBsysPy/libs64/
linux
)
endif
()
endif
()
endif
()
...
...
MBsysC/mbs_interface/MBsysPy/mbsyspy/mbs_data.py
View file @
6c26f021
...
...
@@ -1329,7 +1329,7 @@ class _UserModelDict(dict):
elif
self
.
_type
[
key
]
==
6
:
print
(
"Type structure for a user model is not available in python"
)
else
:
print
(
"Invalid type for the user model
"
)
print
(
"Invalid type for the user model
, type ID is: "
+
str
(
self
.
_type
[
key
])
)
else
:
print
(
"Unknown user model "
+
str
(
self
.
_parent_key
)
+
"."
+
str
(
key
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment