1
- TARGET = v_rep
1
+ TARGET = coppeliaSim
2
2
TEMPLATE = lib
3
3
4
4
CONFIG += shared debug_and_release
@@ -22,7 +22,7 @@ WITH_GUI {
22
22
RESOURCES += $$PWD /toolbarFiles.qrc
23
23
RESOURCES += $$PWD /variousImageFiles.qrc
24
24
RESOURCES += $$PWD /iconFiles.qrc
25
- RESOURCES += $$PWD /imageFiles_vrep .qrc
25
+ RESOURCES += $$PWD /imageFiles .qrc
26
26
}
27
27
28
28
WITH_OPENGL {
@@ -61,10 +61,10 @@ WITH_SERIAL {
61
61
62
62
MSVC_VER = $$(VisualStudioVersion)
63
63
equals(MSVC_VER,14.0){
64
- DEFINES += VREP_COMPILER_STR =\ \\"MSVC2015\\\"
64
+ DEFINES += SIM_COMPILER_STR =\ \\"MSVC2015\\\"
65
65
}
66
66
equals(MSVC_VER,15.0){
67
- DEFINES += VREP_COMPILER_STR =\ \\"MSVC2017\\\"
67
+ DEFINES += SIM_COMPILER_STR =\ \\"MSVC2017\\\"
68
68
}
69
69
}
70
70
@@ -91,7 +91,7 @@ WITH_SERIAL {
91
91
QMAKE_CXXFLAGS_WARN_ON += -Wno-unused-local-typedefs
92
92
QMAKE_CXXFLAGS_WARN_ON += -Wno-narrowing
93
93
94
- DEFINES += VREP_COMPILER_STR =\ \\"GCC\\\"
94
+ DEFINES += SIM_COMPILER_STR =\ \\"GCC\\\"
95
95
}
96
96
97
97
clang* {
@@ -119,7 +119,7 @@ clang* {
119
119
QMAKE_CFLAGS += -mmacosx-version-min =10.7
120
120
QMAKE_CXXFLAGS += -mmacosx-version-min =10.7
121
121
122
- DEFINES += VREP_COMPILER_STR =\ \\"Clang\\\"
122
+ DEFINES += SIM_COMPILER_STR =\ \\"Clang\\\"
123
123
}
124
124
125
125
win32 {
@@ -128,15 +128,15 @@ win32 {
128
128
LIBS += -lopengl32
129
129
LIBS += -luser32
130
130
LIBS += -lDbghelp
131
- DEFINES += WIN_VREP
131
+ DEFINES += WIN_SIM
132
132
}
133
133
134
134
macx {
135
- DEFINES += MAC_VREP
135
+ DEFINES += MAC_SIM
136
136
}
137
137
138
138
unix :!macx {
139
- DEFINES += LIN_VREP
139
+ DEFINES += LIN_SIM
140
140
}
141
141
142
142
INCLUDEPATH += $$BOOST_INCLUDEPATH
@@ -190,7 +190,7 @@ INCLUDEPATH += $$PWD/"sourceCode/customUserInterfaces"
190
190
INCLUDEPATH += $$PWD / " sourceCode/undoRedo"
191
191
INCLUDEPATH += $$PWD / " sourceCode/rendering"
192
192
INCLUDEPATH += $$PWD / " ../programming/include"
193
- INCLUDEPATH += $$PWD / " ../programming/v_repMath "
193
+ INCLUDEPATH += $$PWD / " ../programming/simMath "
194
194
195
195
WITH_SERIAL {
196
196
INCLUDEPATH += $$PWD / " sourceCode/communication/serialPort"
@@ -216,9 +216,9 @@ WITH_GUI {
216
216
}
217
217
218
218
*-msvc* {
219
- QMAKE_CXXFLAGS += /FI $$PWD / " sourceCode/various/vrepMainHeader .h"
219
+ QMAKE_CXXFLAGS += /FI $$PWD / " sourceCode/various/simMainHeader .h"
220
220
} else {
221
- QMAKE_CXXFLAGS += -include $$PWD / " sourceCode/various/vrepMainHeader .h"
221
+ QMAKE_CXXFLAGS += -include $$PWD / " sourceCode/various/simMainHeader .h"
222
222
}
223
223
224
224
WITH_GUI {
@@ -258,7 +258,7 @@ WITH_GUI {
258
258
$$PWD /ui/qdlgdummies.ui \
259
259
$$PWD /ui/qdlgoctrees.ui \
260
260
$$PWD /ui/qdlgpointclouds.ui \
261
- $$PWD /ui/qdlgscriptparameters .ui \
261
+ $$PWD /ui/qdlguserparameters .ui \
262
262
$$PWD /ui/qdlgforcesensors.ui \
263
263
$$PWD /ui/qdlgprimitives.ui \
264
264
$$PWD /ui/qdlgconvexdecomposition.ui \
@@ -318,22 +318,22 @@ WITH_GUI {
318
318
$$PWD /ui/qdlgtranslationrotationcont.ui \
319
319
}
320
320
321
- HEADERS += $$PWD /../programming/v_repMath /mathDefines.h \
322
- $$PWD /../programming/v_repMath /Vector.h \
323
- $$PWD /../programming/v_repMath /MyMath.h \
324
- $$PWD /../programming/v_repMath /MMatrix.h \
325
- $$PWD /../programming/v_repMath /7Vector.h \
326
- $$PWD /../programming/v_repMath /6X6Matrix.h \
327
- $$PWD /../programming/v_repMath /6Vector.h \
328
- $$PWD /../programming/v_repMath /4X4Matrix.h \
329
- $$PWD /../programming/v_repMath /4X4FullMatrix.h \
330
- $$PWD /../programming/v_repMath /4Vector.h \
331
- $$PWD /../programming/v_repMath /3X3Matrix.h \
332
- $$PWD /../programming/v_repMath /3Vector.h \
333
- $$PWD /sourceCode/various/vrepMainHeader .h
334
-
335
- HEADERS += $$PWD /../programming/include/v_repConst .h \
336
- $$PWD /../programming/include/v_repTypes .h \
321
+ HEADERS += $$PWD /../programming/simMath /mathDefines.h \
322
+ $$PWD /../programming/simMath /Vector.h \
323
+ $$PWD /../programming/simMath /MyMath.h \
324
+ $$PWD /../programming/simMath /MMatrix.h \
325
+ $$PWD /../programming/simMath /7Vector.h \
326
+ $$PWD /../programming/simMath /6X6Matrix.h \
327
+ $$PWD /../programming/simMath /6Vector.h \
328
+ $$PWD /../programming/simMath /4X4Matrix.h \
329
+ $$PWD /../programming/simMath /4X4FullMatrix.h \
330
+ $$PWD /../programming/simMath /4Vector.h \
331
+ $$PWD /../programming/simMath /3X3Matrix.h \
332
+ $$PWD /../programming/simMath /3Vector.h \
333
+ $$PWD /sourceCode/various/simMainHeader .h
334
+
335
+ HEADERS += $$PWD /../programming/include/simConst .h \
336
+ $$PWD /../programming/include/simTypes .h \
337
337
338
338
HEADERS += $$PWD /sourceCode/inverseKinematics/geomConstraintSolver/iKObject.h \
339
339
$$PWD /sourceCode/inverseKinematics/geomConstraintSolver/iKObjCont.h \
@@ -476,7 +476,7 @@ HEADERS += $$PWD/sourceCode/pathPlanning_old/pathPlanningTask_old.h \
476
476
477
477
HEADERS += $$PWD /sourceCode/motionPlanning_old/motionPlanningTask_old.h \
478
478
479
- HEADERS += $$PWD /sourceCode/luaScripting/luaScriptParameters .h \
479
+ HEADERS += $$PWD /sourceCode/luaScripting/userParameters .h \
480
480
$$PWD /sourceCode/luaScripting/luaScriptObject.h \
481
481
$$PWD /sourceCode/luaScripting/outsideCommandQueueForScript.h \
482
482
$$PWD /sourceCode/luaScripting/luaWrapper.h \
@@ -500,15 +500,16 @@ HEADERS += $$PWD/sourceCode/serialization/ser.h \
500
500
$$PWD /sourceCode/serialization/huffman.h \
501
501
$$PWD /sourceCode/serialization/tinyxml2.cpp \
502
502
503
- HEADERS += $$PWD /sourceCode/strings/v_repStringTable .h \
504
- $$PWD /sourceCode/strings/v_repStringTable_openGl .h \
505
- $$PWD /sourceCode/strings/v_repStringTable_noTranslation .h \
503
+ HEADERS += $$PWD /sourceCode/strings/simStringTable .h \
504
+ $$PWD /sourceCode/strings/simStringTable_openGl .h \
505
+ $$PWD /sourceCode/strings/simStringTable_noTranslation .h \
506
506
507
- HEADERS += $$PWD /sourceCode/interfaces/v_rep .h \
508
- $$PWD /sourceCode/interfaces/v_rep_internal .h \
507
+ HEADERS += $$PWD /sourceCode/interfaces/sim .h \
508
+ $$PWD /sourceCode/interfaces/simInternal .h \
509
509
$$PWD /sourceCode/interfaces/luaScriptFunctions.h \
510
510
$$PWD /sourceCode/interfaces/pathPlanningInterface.h \
511
511
$$PWD /sourceCode/interfaces/dummyClasses.h \
512
+ $$PWD /sourceCode/interfaces/libLic.h \
512
513
513
514
HEADERS += $$PWD /sourceCode/interfaces/interfaceStack/interfaceStack.h \
514
515
$$PWD /sourceCode/interfaces/interfaceStack/interfaceStackObject.h \
@@ -529,7 +530,7 @@ HEADERS += $$PWD/sourceCode/geometricAlgorithms/linMotionRoutines.h \
529
530
$$PWD /sourceCode/geometricAlgorithms/edgeElement.h \
530
531
$$PWD /sourceCode/geometricAlgorithms/algos.h \
531
532
532
- HEADERS += $$PWD /sourceCode/various/vrepConfig .h \
533
+ HEADERS += $$PWD /sourceCode/various/simConfig .h \
533
534
$$PWD /sourceCode/various/gV.h \
534
535
$$PWD /sourceCode/various/global.h \
535
536
$$PWD /sourceCode/various/embeddedFonts.h \
@@ -600,7 +601,7 @@ WITH_QT {
600
601
$$PWD /sourceCode/platform/wThread.h
601
602
602
603
HEADERS += $$PWD /sourceCode/various/simAndUiThreadSync.h \
603
- $$PWD /sourceCode/various/vrepQApp .h
604
+ $$PWD /sourceCode/various/simQApp .h
604
605
}
605
606
606
607
WITH_SERIAL {
@@ -658,7 +659,7 @@ WITH_GUI {
658
659
$$PWD /sourceCode/gui/dialogs/qdlgdummies.h \
659
660
$$PWD /sourceCode/gui/dialogs/qdlgoctrees.h \
660
661
$$PWD /sourceCode/gui/dialogs/qdlgpointclouds.h \
661
- $$PWD /sourceCode/gui/dialogs/qdlgscriptparameters .h \
662
+ $$PWD /sourceCode/gui/dialogs/qdlguserparameters .h \
662
663
$$PWD /sourceCode/gui/dialogs/qdlgforcesensors.h \
663
664
$$PWD /sourceCode/gui/dialogs/qdlgprimitives.h \
664
665
$$PWD /sourceCode/gui/dialogs/qdlgconvexdecomposition.h \
@@ -722,7 +723,7 @@ WITH_GUI {
722
723
$$PWD /sourceCode/gui/dialogs/other/toolDlgWrapper.h \
723
724
$$PWD /sourceCode/gui/dialogs/other/dlgEx.h \
724
725
$$PWD /sourceCode/gui/dialogs/other/dlgCont.h \
725
- $$PWD /sourceCode/gui/dialogs/other/qvrep_openglwidget .h \
726
+ $$PWD /sourceCode/gui/dialogs/other/qsim_openglwidget .h \
726
727
727
728
HEADERS += $$PWD /sourceCode/gui/qtPropertyBrowserRelated/qtPropertyBrowserFiles/qtbuttonpropertybrowser.h \
728
729
$$PWD /sourceCode/gui/qtPropertyBrowserRelated/qtPropertyBrowserFiles/qteditorfactory.h \
@@ -784,17 +785,17 @@ WITH_GUI {
784
785
HEADERS += $$PWD /sourceCode/gui/libs/auxLibVideo.h \
785
786
}
786
787
787
- SOURCES += $$PWD /../programming/v_repMath /Vector.cpp \
788
- $$PWD /../programming/v_repMath /MyMath.cpp \
789
- $$PWD /../programming/v_repMath /MMatrix.cpp \
790
- $$PWD /../programming/v_repMath /7Vector.cpp \
791
- $$PWD /../programming/v_repMath /6X6Matrix.cpp \
792
- $$PWD /../programming/v_repMath /6Vector.cpp \
793
- $$PWD /../programming/v_repMath /4X4Matrix.cpp \
794
- $$PWD /../programming/v_repMath /4X4FullMatrix.cpp \
795
- $$PWD /../programming/v_repMath /4Vector.cpp \
796
- $$PWD /../programming/v_repMath /3X3Matrix.cpp \
797
- $$PWD /../programming/v_repMath /3Vector.cpp \
788
+ SOURCES += $$PWD /../programming/simMath /Vector.cpp \
789
+ $$PWD /../programming/simMath /MyMath.cpp \
790
+ $$PWD /../programming/simMath /MMatrix.cpp \
791
+ $$PWD /../programming/simMath /7Vector.cpp \
792
+ $$PWD /../programming/simMath /6X6Matrix.cpp \
793
+ $$PWD /../programming/simMath /6Vector.cpp \
794
+ $$PWD /../programming/simMath /4X4Matrix.cpp \
795
+ $$PWD /../programming/simMath /4X4FullMatrix.cpp \
796
+ $$PWD /../programming/simMath /4Vector.cpp \
797
+ $$PWD /../programming/simMath /3X3Matrix.cpp \
798
+ $$PWD /../programming/simMath /3Vector.cpp \
798
799
799
800
SOURCES += $$PWD /sourceCode/inverseKinematics/geomConstraintSolver/iKObject.cpp \
800
801
$$PWD /sourceCode/inverseKinematics/geomConstraintSolver/iKObjCont.cpp \
@@ -939,7 +940,7 @@ SOURCES += $$PWD/sourceCode/pathPlanning_old/pathPlanningTask_old.cpp \
939
940
940
941
SOURCES += $$PWD /sourceCode/motionPlanning_old/motionPlanningTask_old.cpp \
941
942
942
- SOURCES += $$PWD /sourceCode/luaScripting/luaScriptParameters .cpp \
943
+ SOURCES += $$PWD /sourceCode/luaScripting/userParameters .cpp \
943
944
$$PWD /sourceCode/luaScripting/luaScriptObject.cpp \
944
945
$$PWD /sourceCode/luaScripting/outsideCommandQueueForScript.cpp \
945
946
$$PWD /sourceCode/luaScripting/luaWrapper.cpp \
@@ -963,10 +964,11 @@ SOURCES += $$PWD/sourceCode/serialization/ser.cpp \
963
964
$$PWD /sourceCode/serialization/huffman.c \
964
965
$$PWD /sourceCode/serialization/tinyxml2.cpp \
965
966
966
- SOURCES += $$PWD /sourceCode/interfaces/v_rep .cpp \
967
- $$PWD /sourceCode/interfaces/v_rep_internal .cpp \
967
+ SOURCES += $$PWD /sourceCode/interfaces/sim .cpp \
968
+ $$PWD /sourceCode/interfaces/simInternal .cpp \
968
969
$$PWD /sourceCode/interfaces/luaScriptFunctions.cpp \
969
970
$$PWD /sourceCode/interfaces/pathPlanningInterface.cpp \
971
+ $$PWD /sourceCode/interfaces/libLic.cpp \
970
972
971
973
SOURCES += $$PWD /sourceCode/interfaces/interfaceStack/interfaceStack.cpp \
972
974
$$PWD /sourceCode/interfaces/interfaceStack/interfaceStackObject.cpp \
@@ -1055,7 +1057,7 @@ WITH_QT {
1055
1057
$$PWD /sourceCode/platform/wThread.cpp
1056
1058
1057
1059
SOURCES += $$PWD /sourceCode/various/simAndUiThreadSync.cpp \
1058
- $$PWD /sourceCode/various/vrepQApp .cpp
1060
+ $$PWD /sourceCode/various/simQApp .cpp
1059
1061
}
1060
1062
1061
1063
WITH_SERIAL {
@@ -1114,7 +1116,7 @@ WITH_GUI {
1114
1116
$$PWD /sourceCode/gui/dialogs/qdlgdummies.cpp \
1115
1117
$$PWD /sourceCode/gui/dialogs/qdlgoctrees.cpp \
1116
1118
$$PWD /sourceCode/gui/dialogs/qdlgpointclouds.cpp \
1117
- $$PWD /sourceCode/gui/dialogs/qdlgscriptparameters .cpp \
1119
+ $$PWD /sourceCode/gui/dialogs/qdlguserparameters .cpp \
1118
1120
$$PWD /sourceCode/gui/dialogs/qdlgforcesensors.cpp \
1119
1121
$$PWD /sourceCode/gui/dialogs/qdlgprimitives.cpp \
1120
1122
$$PWD /sourceCode/gui/dialogs/qdlgconvexdecomposition.cpp \
@@ -1194,7 +1196,7 @@ WITH_GUI {
1194
1196
$$PWD /sourceCode/gui/dialogs/other/toolDlgWrapper.cpp \
1195
1197
$$PWD /sourceCode/gui/dialogs/other/dlgEx.cpp \
1196
1198
$$PWD /sourceCode/gui/dialogs/other/dlgCont.cpp \
1197
- $$PWD /sourceCode/gui/dialogs/other/qvrep_openglwidget .cpp \
1199
+ $$PWD /sourceCode/gui/dialogs/other/qsim_openglwidget .cpp \
1198
1200
1199
1201
SOURCES += $$PWD /sourceCode/gui/platform/vMessageBox.cpp \
1200
1202
$$PWD /sourceCode/gui/platform/vMenubar.cpp \
0 commit comments