diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6b8dec7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/Makefile +cube/Makefile +pyramid/Makefile \ No newline at end of file diff --git a/Simulator/Simulator.pro b/PhySim.pro similarity index 82% rename from Simulator/Simulator.pro rename to PhySim.pro index a246dda..71ace67 100644 --- a/Simulator/Simulator.pro +++ b/PhySim.pro @@ -1,16 +1,16 @@ #------------------------------------------------- # -# Project created by QtCreator 2017-06-12T14:04:30 +# Project created by QtCreator 2017-07-14T05:07:20 # #------------------------------------------------- QT += core gui -QT += widgets greaterThan(QT_MAJOR_VERSION, 4): QT += widgets -TARGET = Simulator +TARGET = PhySim TEMPLATE = app +INCLUDEPATH += . # The following define makes your compiler emit warnings if you use # any feature of Qt which as been marked as deprecated (the exact warnings @@ -26,13 +26,10 @@ DEFINES += QT_DEPRECATED_WARNINGS SOURCES += \ main.cpp \ - simulator.cpp + mainwindow.cpp HEADERS += \ - simulator.h + mainwindow.h FORMS += \ - simulator.ui - -RESOURCES += \ - resources.qrc + mainwindow.ui diff --git a/Simulator/Simulator.pro.user b/PhySim.pro.user similarity index 97% rename from Simulator/Simulator.pro.user rename to PhySim.pro.user index 3f39909..a610ea3 100644 --- a/Simulator/Simulator.pro.user +++ b/PhySim.pro.user @@ -1,6 +1,6 @@ - + EnvironmentId @@ -66,7 +66,7 @@ 0 0 - /home/ayushmalviya27/Desktop/MUSoC/PhySim/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug + /home/ayushmalviya27/Desktop/Physics-Sim/build-PhySim-Desktop_Qt_5_9_0_GCC_64bit-Debug true @@ -126,7 +126,7 @@ true - /home/ayushmalviya27/Desktop/MUSoC/PhySim/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Release + /home/ayushmalviya27/Desktop/Physics-Sim/build-PhySim-Desktop_Qt_5_9_0_GCC_64bit-Release true @@ -186,7 +186,7 @@ true - /home/ayushmalviya27/Desktop/MUSoC/PhySim/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Profile + /home/ayushmalviya27/Desktop/Physics-Sim/build-PhySim-Desktop_Qt_5_9_0_GCC_64bit-Profile true @@ -302,15 +302,15 @@ 2 - Simulator - - Qt4ProjectManager.Qt4RunConfiguration:/home/ayushmalviya27/Desktop/MUSoC/PhySim/Simulator/Simulator.pro + PhySim + PhySim2 + Qt4ProjectManager.Qt4RunConfiguration:/home/ayushmalviya27/Desktop/MUSoC/PhySim/PhySim.pro true - Simulator.pro + PhySim.pro false - /home/ayushmalviya27/Desktop/MUSoC/PhySim/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug + /home/ayushmalviya27/Desktop/Physics-Sim/build-PhySim-Desktop_Qt_5_9_0_GCC_64bit-Debug 3768 false true diff --git a/README.md b/README.md index 62178a7..3a5e015 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,15 @@ # PhySim ## Project Details: -Creating a Physics Simulator using OpenGL. - -### MUSoC Proposal link: https://drive.google.com/file/d/0B58WlDabcUEZWkg1OUE3YzhnNW8/view - +It is a Qt created GUI project that consists of different simulations of simple shapes (5, for now), made via OpenGL. +The user can select the desired option from the interface. # Running The Project: There are two basic ways to build and run the project: ## 1. Using Qt: - --> Open the Simulator.pro file directly (if the extension is associated via Qt) + --> Open the PhySim.pro file directly (if the extension is associated via Qt) or load the project via Qt first. --> Click on the Hammer icon (or use Ctrl+B) to build the project. --> Now use the Run icon (or Ctrl+R) to run the project. @@ -37,7 +35,26 @@ There are two basic ways to build and run the project: Execution of the program - After running the previous command, an executable file by the name of "Simulator" in the directory. + After running the previous command, an executable file by the name of "PhySim" in the directory. To run it, use the following command. - $ ./Simulator \ No newline at end of file + $ ./PhySim + + +## Building and compilation (Ubuntu): + the animation_builds folder contains the code for the different animations in addition to the Build executables. If you wish to do it yourself, you can do so by using running the following in the terminal: + $ g++ filename.cpp -o outputname -lGL -lGLU -lglut + + You can refer to the following for additional help: + http://goanna.cs.rmit.edu.au/~gl/teaching/Interactive3D/2012/compiling.html + +## Before running the project: + Make sure to update the location of the build executable for all the animations under mainwindow.cpp by editing the following code, or it could cause the program to not run properly: + + void MainWindow::on_pushButton_clicked() + { + QString file = "Insert location of executable here"; + QProcess::startDetached(file); + } + + diff --git a/Simulator/icons/button_play_green.png b/Simulator/icons/button_play_green.png deleted file mode 100644 index 6c6ea84..0000000 Binary files a/Simulator/icons/button_play_green.png and /dev/null differ diff --git a/Simulator/icons/exit.png b/Simulator/icons/exit.png deleted file mode 100644 index 8f2d4e6..0000000 Binary files a/Simulator/icons/exit.png and /dev/null differ diff --git a/Simulator/icons/export.png b/Simulator/icons/export.png deleted file mode 100644 index 9e639b7..0000000 Binary files a/Simulator/icons/export.png and /dev/null differ diff --git a/Simulator/icons/media_playback_stop.png b/Simulator/icons/media_playback_stop.png deleted file mode 100644 index 5931bdd..0000000 Binary files a/Simulator/icons/media_playback_stop.png and /dev/null differ diff --git a/Simulator/icons/undo.png b/Simulator/icons/undo.png deleted file mode 100644 index 79d3e5c..0000000 Binary files a/Simulator/icons/undo.png and /dev/null differ diff --git a/Simulator/resources.qrc b/Simulator/resources.qrc deleted file mode 100644 index ba252c7..0000000 --- a/Simulator/resources.qrc +++ /dev/null @@ -1,9 +0,0 @@ - - - icons/button_play_green.png - icons/exit.png - icons/export.png - icons/media_playback_stop.png - icons/undo.png - - diff --git a/Simulator/simulator.cpp b/Simulator/simulator.cpp deleted file mode 100644 index 59fb61c..0000000 --- a/Simulator/simulator.cpp +++ /dev/null @@ -1,19 +0,0 @@ -#include "simulator.h" -#include "ui_simulator.h" - -Simulator::Simulator(QWidget *parent) : - QMainWindow(parent), - ui(new Ui::Simulator) -{ - ui->setupUi(this); -} - -Simulator::~Simulator() -{ - delete ui; -} - -void Simulator::on_actionQuit_triggered() -{ - QApplication::quit(); -} diff --git a/Simulator/simulator.h b/Simulator/simulator.h deleted file mode 100644 index 71ea5d3..0000000 --- a/Simulator/simulator.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef SIMULATOR_H -#define SIMULATOR_H - -#include - -namespace Ui { -class Simulator; -} - -class Simulator : public QMainWindow -{ - Q_OBJECT - -public: - explicit Simulator(QWidget *parent = 0); - ~Simulator(); - -private slots: - void on_actionQuit_triggered(); - -private: - Ui::Simulator *ui; -}; - -#endif // SIMULATOR_H diff --git a/Simulator/simulator.ui b/Simulator/simulator.ui deleted file mode 100644 index c8705a1..0000000 --- a/Simulator/simulator.ui +++ /dev/null @@ -1,356 +0,0 @@ - - - Simulator - - - Qt::NonModal - - - - 0 - 0 - 715 - 549 - - - - Simulator - - - - - - 360 - 420 - 61 - 21 - - - - Stop - - - - - - 240 - 420 - 71 - 21 - - - - Start - - - - - - 120 - 40 - 441 - 361 - - - - false - - - - - - 0 - 130 - 112 - 23 - - - - Cube - - - - - - 0 - 170 - 81 - 21 - - - - Pyramid - - - - - - 0 - 210 - 71 - 21 - - - - Sphere - - - - - - 0 - 100 - 101 - 31 - - - - Choose Shape: - - - - - - 600 - 140 - 16 - 160 - - - - Qt::Vertical - - - - - - 640 - 140 - 16 - 160 - - - - Qt::Vertical - - - - - - 680 - 140 - 16 - 160 - - - - Qt::Vertical - - - - - - 590 - 310 - 31 - 17 - - - - xRot - - - - - - 630 - 310 - 31 - 17 - - - - yRot - - - - - - 670 - 310 - 31 - 17 - - - - zRot - - - - - - 10 - 300 - 81 - 91 - - - - - Bouncing - - - - - Collision - - - - - Bursting - - - - - Rolling - - - - - Rotating - - - - - - - 10 - 280 - 91 - 17 - - - - Select Action: - - - - - - 580 - 110 - 131 - 21 - - - - Adjust Orientation: - - - - - - - 0 - 0 - 715 - 22 - - - - - true - - - File - - - - - - - - - - - - TopToolBarArea - - - false - - - - - - - - - true - - - - :/rec/icons/undo.png:/rec/icons/undo.png - - - Reset - - - Reset all the settings - - - - - - :/rec/icons/export.png:/rec/icons/export.png - - - Export - - - Export the animation as a video file - - - - - - :/rec/icons/button_play_green.png:/rec/icons/button_play_green.png - - - Play - - - Start the animation - - - - - - :/rec/icons/media_playback_stop.png:/rec/icons/media_playback_stop.png - - - Stop - - - Stop the animation - - - - - - :/rec/icons/exit.png:/rec/icons/exit.png - - - Quit - - - Quit the Simulator - - - - - - - - - diff --git a/animation_builds/Ball b/animation_builds/Ball new file mode 100755 index 0000000..b7452ff Binary files /dev/null and b/animation_builds/Ball differ diff --git a/animation_builds/Ball.cpp b/animation_builds/Ball.cpp new file mode 100644 index 0000000..cb2d4ac --- /dev/null +++ b/animation_builds/Ball.cpp @@ -0,0 +1,91 @@ + +#include +#include + +void myinit() +{ +GLfloat mat_ambient[]={0.3,0.3,0.3,1.0}; +GLfloat mat_diffuse[]={0.6,0.6,0.6,1.0}; +GLfloat mat_specular[]={0.9,0.9,0.9,1.0}; +GLfloat mat_shininess[]={100.0}; + +glMaterialfv(GL_FRONT_AND_BACK,GL_AMBIENT,mat_ambient); +glMaterialfv(GL_FRONT_AND_BACK,GL_DIFFUSE,mat_diffuse); +glMaterialfv(GL_FRONT_AND_BACK,GL_SPECULAR,mat_specular); +glMaterialfv(GL_FRONT_AND_BACK,GL_SHININESS,mat_shininess); + +GLfloat light0_ambient[]={0.5,0.5,0.5,1.0}; +GLfloat light0_diffuse[]={1.0,1.0,1.0,1.0}; +GLfloat light0_specular[]={1.0,1.0,1.0,1.0}; +GLfloat light0_position[]={5.0,5.0,5.0,0.0}; + +glLightfv(GL_LIGHT0,GL_AMBIENT,light0_ambient); +glLightfv(GL_LIGHT0,GL_DIFFUSE,light0_diffuse); +glLightfv(GL_LIGHT0,GL_SPECULAR,light0_specular); +glLightfv(GL_LIGHT0,GL_POSITION,light0_position); +glLightModelfv(GL_LIGHT_MODEL_TWO_SIDE,light0_ambient); + +glEnable(GL_LIGHTING); +glEnable(GL_LIGHT0); +glEnable(GL_DEPTH_TEST); +glShadeModel(GL_SMOOTH); +glEnable(GL_NORMALIZE); +} + +void sphere() +{ +glPushMatrix(); +glutSolidSphere(1.0,100,100); +glPopMatrix(); +} +static GLfloat theta[]={0.0,0.0,0.0}; +static GLint axis=2.0; + +void display() +{ +glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); +glLoadIdentity(); +glRotatef(theta[0],1.0,0.0,0.0); +glRotatef(theta[1],0.0,1.0,0.0); +glRotatef(theta[2],0.0,0.0,1.0); +sphere(); +glFlush(); +glutSwapBuffers(); +} + +void spinsphere() +{ +theta[axis]+=10.0; +if(theta[axis]>360.0) +theta[axis]-=360.0; +glutPostRedisplay(); +} + +void myreshape(int w,int h) +{ +glViewport(0,0,w,h); +glMatrixMode(GL_PROJECTION); +glLoadIdentity(); +if(w<=h) +glOrtho(-2.0,2.0,-2.0*(GLfloat)h/(GLfloat)w,2.0*(GLfloat)h/(GLfloat)w,-10.0,10.0); +else +glOrtho(-2.0*(GLfloat)h/(GLfloat)w,2.0*(GLfloat)h/(GLfloat)w,-2.0,2.0,-10.0,10.0); +glMatrixMode(GL_MODELVIEW); +glLoadIdentity(); +} + + +int main(int argc,char **argv) +{ +glutInit(&argc,argv); +glutInitDisplayMode(GLUT_DOUBLE|GLUT_RGB|GLUT_DEPTH); +glutInitWindowSize(500,500); +glutInitWindowPosition(0,0); +glutCreateWindow("Ball"); +glutReshapeFunc(myreshape); +glutDisplayFunc(display); +glutIdleFunc(spinsphere); +myinit(); +glutMainLoop(); +return 0; +} \ No newline at end of file diff --git a/animation_builds/BallBounce b/animation_builds/BallBounce new file mode 100755 index 0000000..bac57cd Binary files /dev/null and b/animation_builds/BallBounce differ diff --git a/animation_builds/BallBounce.cpp b/animation_builds/BallBounce.cpp new file mode 100644 index 0000000..caae041 --- /dev/null +++ b/animation_builds/BallBounce.cpp @@ -0,0 +1,100 @@ +#include +#include +#include +#include +#include + + +bool fullscreen = false; +float posx,posy,movespeedx,movespeedy; + + +bool init() +{ + glClearColor(0.93f, 0.93f, 0.93f, 0.0f); + glColor3f(0.0f, 0.0f, 0.0f); + + return true; +} + +void display() +{ + glClear(GL_COLOR_BUFFER_BIT); + int PI=3.14159265; + float radius=0.03f; + + if (posx+radius>1.0f || posx-radius<-1.0f) + { + movespeedx*=-1; + } + if (posy+radius>1.0f || posy-radius<-1.0f) + { + movespeedy*=-1; + } + posx+=movespeedx; + posy+=movespeedy; + + glBegin(GL_POLYGON); + for (float angle = 0;angle<360;angle+=0.01) + { + float xc=sin(angle*PI/180) * radius; + float yc=cos(angle*PI/180) * radius; + glVertex3f( xc+posx, yc+posy ,0.0f); + } + glEnd(); + glFlush(); + glutSwapBuffers(); + glutPostRedisplay(); +} + +void keyboard(unsigned char key, int x, int y) +{ + if (key == 27) + exit(1); +} + +void specialKeyboard(int key, int x, int y) +{ + switch(key) + { + case GLUT_KEY_F1: + fullscreen = !fullscreen; + if (fullscreen) + glutFullScreen(); + else + { + glutReshapeWindow(500, 500); + glutPositionWindow(50, 50); + } + break; + } +} + +int main(int argc, char *argv[]) +{ + srand ( time(NULL) ); + int step=10; + posx=(rand()%step)/step-0.5f; + posy=(rand()%step)/step-0.5f; + movespeedx=0.02f; + movespeedy=0.03f; + + glutInit(&argc, argv); + + glutInitWindowPosition(50, 50); + glutInitWindowSize(500, 500); + + glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE); + + glutCreateWindow("Bouncing Ball"); + + glutDisplayFunc(display); + glutKeyboardFunc(keyboard); + glutSpecialFunc(specialKeyboard); + if (!init()) + return 1; + + glutMainLoop(); + + return 0; +} \ No newline at end of file diff --git a/animation_builds/CubeDance b/animation_builds/CubeDance new file mode 100755 index 0000000..6204b46 Binary files /dev/null and b/animation_builds/CubeDance differ diff --git a/animation_builds/CubeDance.cpp b/animation_builds/CubeDance.cpp new file mode 100644 index 0000000..9dd868d --- /dev/null +++ b/animation_builds/CubeDance.cpp @@ -0,0 +1,114 @@ +#include +#include +static GLfloat rot; //rotation angle + + +void display_func(void) +{ +/*Matrix for the vertices of Cubes*/ + static GLfloat vert[][4]={ + { 1.0, 1.0, 1.0}, + {-1.0, 1.0, 1.0}, + {-1.0, -1.0, 1.0}, + { 1.0, -1.0, 1.0}, + { 1.0, 1.0, -1.0}, + {-1.0, 1.0, -1.0}, + {-1.0, -1.0, -1.0}, + { 1.0, -1.0, -1.0}, + }; + /*Matrix for the color of sides of Cubes*/ + static GLfloat color[][4]={ + {1.0, 0.0, 0.0, 0.0}, + {0.0, 1.0, 0.0, 0.0}, + {0.0, 0.0, 1.0, 0.0}, + {0.0, 1.0, 1.0, 0.0}, + {1.0, 0.0, 1.0, 0.0}, + {1.0, 1.0, 0.0, 0.0}, + }; + + + + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + glPushMatrix();//push on stack + glTranslatef(0.0, 0.0, -15.0); //move + glRotatef(rot, 0.0, 1.0, 0.0); //rotation + + + glTranslatef(0.0, 0.0, -5.0); //move + glRotatef(rot*2, 1.0, 0.0, 0.0); //rotation + + glBegin(GL_QUADS); + glColor3fv(color[0]); + glVertex3fv(vert[0]); + glVertex3fv(vert[1]); + glVertex3fv(vert[2]); + glVertex3fv(vert[3]); + + glColor3fv(color[1]); + glVertex3fv(vert[4]); + glVertex3fv(vert[5]); + glVertex3fv(vert[6]); + glVertex3fv(vert[7]); + + glColor3fv(color[2]); + glVertex3fv(vert[0]); + glVertex3fv(vert[1]); + glVertex3fv(vert[5]); + glVertex3fv(vert[4]); + + glColor3fv(color[3]); + glVertex3fv(vert[2]); + glVertex3fv(vert[3]); + glVertex3fv(vert[7]); + glVertex3fv(vert[6]); + + glColor3fv(color[4]); + glVertex3fv(vert[3]); + glVertex3fv(vert[0]); + glVertex3fv(vert[4]); + glVertex3fv(vert[7]); + + glColor3fv(color[5]); + glVertex3fv(vert[1]); + glVertex3fv(vert[2]); + glVertex3fv(vert[6]); + glVertex3fv(vert[5]); + + glEnd(); + glPopMatrix(); //pop out stack + + glutSwapBuffers(); +} + + +void reshape_func(int width, int height) +{ + + glViewport(0, 0, width, height); + glMatrixMode(GL_PROJECTION); + glLoadIdentity(); + glFrustum(-1.0, 1.0, -1.0, 1.0, 3.0, 10000.0); + + glMatrixMode(GL_MODELVIEW); +} + +void idle_func(void) +{ + rot=0.1*(GLfloat)glutGet(GLUT_ELAPSED_TIME); //Returns the amount of time (in milliseconds) from the time you call the () glutInit. + glutPostRedisplay(); //re-draw the screen glut +} + +int main(int argc, char *argv[]) +{ + + glutInit(&argc, argv); + glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH); + glutInitWindowSize(300,300); + glutCreateWindow("CubeDance"); + glutDisplayFunc(display_func); + glutReshapeFunc(reshape_func); + glutIdleFunc(idle_func); + glEnable(GL_DEPTH_TEST); + glutMainLoop(); + return 0; +} \ No newline at end of file diff --git a/animation_builds/CubeRotate b/animation_builds/CubeRotate new file mode 100755 index 0000000..5bc1528 Binary files /dev/null and b/animation_builds/CubeRotate differ diff --git a/animation_builds/CubeRotate.cpp b/animation_builds/CubeRotate.cpp new file mode 100644 index 0000000..9368a1b --- /dev/null +++ b/animation_builds/CubeRotate.cpp @@ -0,0 +1,98 @@ +#include +#include +#include + GLfloat xRotated, yRotated, zRotated; +void init(void) +{ +glClearColor(0,0,0,0); + +} + +void DrawCube(void) +{ + + glMatrixMode(GL_MODELVIEW); + // clear the drawing buffer. + glClear(GL_COLOR_BUFFER_BIT); + glLoadIdentity(); + glTranslatef(0.0,0.0,-10.5); + glRotatef(xRotated,1.0,0.0,0.0); + // rotation about Y axis + glRotatef(yRotated,0.0,1.0,0.0); + // rotation about Z axis + glRotatef(zRotated,0.0,0.0,1.0); + glBegin(GL_QUADS); // Draw The Cube Using quads + glColor3f(0.0f,1.0f,0.0f); // Color Blue + glVertex3f( 1.0f, 1.0f,-1.0f); // Top Right Of The Quad (Top) + glVertex3f(-1.0f, 1.0f,-1.0f); // Top Left Of The Quad (Top) + glVertex3f(-1.0f, 1.0f, 1.0f); // Bottom Left Of The Quad (Top) + glVertex3f( 1.0f, 1.0f, 1.0f); // Bottom Right Of The Quad (Top) + glColor3f(1.0f,0.5f,0.0f); // Color Orange + glVertex3f( 1.0f,-1.0f, 1.0f); // Top Right Of The Quad (Bottom) + glVertex3f(-1.0f,-1.0f, 1.0f); // Top Left Of The Quad (Bottom) + glVertex3f(-1.0f,-1.0f,-1.0f); // Bottom Left Of The Quad (Bottom) + glVertex3f( 1.0f,-1.0f,-1.0f); // Bottom Right Of The Quad (Bottom) + glColor3f(1.0f,0.0f,0.0f); // Color Red + glVertex3f( 1.0f, 1.0f, 1.0f); // Top Right Of The Quad (Front) + glVertex3f(-1.0f, 1.0f, 1.0f); // Top Left Of The Quad (Front) + glVertex3f(-1.0f,-1.0f, 1.0f); // Bottom Left Of The Quad (Front) + glVertex3f( 1.0f,-1.0f, 1.0f); // Bottom Right Of The Quad (Front) + glColor3f(1.0f,1.0f,0.0f); // Color Yellow + glVertex3f( 1.0f,-1.0f,-1.0f); // Top Right Of The Quad (Back) + glVertex3f(-1.0f,-1.0f,-1.0f); // Top Left Of The Quad (Back) + glVertex3f(-1.0f, 1.0f,-1.0f); // Bottom Left Of The Quad (Back) + glVertex3f( 1.0f, 1.0f,-1.0f); // Bottom Right Of The Quad (Back) + glColor3f(0.0f,0.0f,1.0f); // Color Blue + glVertex3f(-1.0f, 1.0f, 1.0f); // Top Right Of The Quad (Left) + glVertex3f(-1.0f, 1.0f,-1.0f); // Top Left Of The Quad (Left) + glVertex3f(-1.0f,-1.0f,-1.0f); // Bottom Left Of The Quad (Left) + glVertex3f(-1.0f,-1.0f, 1.0f); // Bottom Right Of The Quad (Left) + glColor3f(1.0f,0.0f,1.0f); // Color Violet + glVertex3f( 1.0f, 1.0f,-1.0f); // Top Right Of The Quad (Right) + glVertex3f( 1.0f, 1.0f, 1.0f); // Top Left Of The Quad (Right) + glVertex3f( 1.0f,-1.0f, 1.0f); // Bottom Left Of The Quad (Right) + glVertex3f( 1.0f,-1.0f,-1.0f); // Bottom Right Of The Quad (Right) + glEnd(); // End Drawing The Cube +glFlush(); +} + + +void animation(void) +{ + + yRotated += 0.01; + xRotated += 0.02; + DrawCube(); +} + + +void reshape(int x, int y) +{ + if (y == 0 || x == 0) return; //Nothing is visible then, so return + //Set a new projection matrix + glMatrixMode(GL_PROJECTION); + glLoadIdentity(); + //Angle of view:40 degrees + //Near clipping plane distance: 0.5 + //Far clipping plane distance: 20.0 + + gluPerspective(40.0,(GLdouble)x/(GLdouble)y,0.5,20.0); + glMatrixMode(GL_MODELVIEW); + glViewport(0,0,x,y); //Use the whole window for rendering +} + +int main(int argc, char** argv){ + +glutInit(&argc, argv); +//we initizlilze the glut. functions +glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB); +glutInitWindowPosition(100, 100); +glutCreateWindow("CubeRotate"); +init(); +glutDisplayFunc(DrawCube); +glutReshapeFunc(reshape); +//Set the function for the animation. +glutIdleFunc(animation); +glutMainLoop(); +return 0; +} \ No newline at end of file diff --git a/animation_builds/RollingBall b/animation_builds/RollingBall new file mode 100755 index 0000000..d3ad5c1 Binary files /dev/null and b/animation_builds/RollingBall differ diff --git a/animation_builds/RollingBall.cpp b/animation_builds/RollingBall.cpp new file mode 100644 index 0000000..40dacc6 --- /dev/null +++ b/animation_builds/RollingBall.cpp @@ -0,0 +1,95 @@ +#include +#include + +void myinit() +{ +GLfloat mat_ambient[]={0.3,0.3,0.3,1.0}; +GLfloat mat_diffuse[]={0.6,0.6,0.6,1.0}; +GLfloat mat_specular[]={0.9,0.9,0.9,1.0}; +GLfloat mat_shininess[]={100.0}; + +glMaterialfv(GL_FRONT_AND_BACK,GL_AMBIENT,mat_ambient); +glMaterialfv(GL_FRONT_AND_BACK,GL_DIFFUSE,mat_diffuse); +glMaterialfv(GL_FRONT_AND_BACK,GL_SPECULAR,mat_specular); +glMaterialfv(GL_FRONT_AND_BACK,GL_SHININESS,mat_shininess); + +GLfloat light0_ambient[]={0.5,0.5,0.5,1.0}; +GLfloat light0_diffuse[]={1.0,1.0,1.0,1.0}; +GLfloat light0_specular[]={1.0,1.0,1.0,1.0}; +GLfloat light0_position[]={5.0,5.0,5.0,0.0}; + +glLightfv(GL_LIGHT0,GL_AMBIENT,light0_ambient); +glLightfv(GL_LIGHT0,GL_DIFFUSE,light0_diffuse); +glLightfv(GL_LIGHT0,GL_SPECULAR,light0_specular); +glLightfv(GL_LIGHT0,GL_POSITION,light0_position); +glLightModelfv(GL_LIGHT_MODEL_TWO_SIDE,light0_ambient); + +glEnable(GL_LIGHTING); +glEnable(GL_LIGHT0); +glEnable(GL_DEPTH_TEST); +glShadeModel(GL_SMOOTH); +glEnable(GL_NORMALIZE); +} + +void sphere() +{ +glPushMatrix(); +glutSolidSphere(0.50,100,100); +glPopMatrix(); +} +static GLfloat theta[]={0.0,0.0,0.0}; +static GLint axis=2.0; +static GLfloat translate[]={-1.0,0.0,-1.0}; + +void display() +{ +glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); +glLoadIdentity(); +glTranslatef( translate[0], translate[1], translate[2]); +glRotatef(theta[0],1.0,0.0,0.0); +glRotatef(theta[1],0.0,1.0,0.0); +glRotatef(theta[2],0.0,0.0,1.0); +sphere(); +glFlush(); +glutSwapBuffers(); +} + +void spinsphere() +{ +theta[axis]+=10.0; +if(theta[axis]>360.0) +theta[axis]-=360.0; +translate[0] += 0.01; // or any value you see fit +//translate[1] += 0.01; // or any value you see fit +translate[2] += 0.01; // or any value you see fit +glutPostRedisplay(); +} + +void myreshape(int w,int h) +{ +glViewport(0,0,w,h); +glMatrixMode(GL_PROJECTION); +glLoadIdentity(); +if(w<=h) +glOrtho(-2.0,2.0,-2.0*(GLfloat)h/(GLfloat)w,2.0*(GLfloat)h/(GLfloat)w,-10.0,10.0); +else +glOrtho(-2.0*(GLfloat)h/(GLfloat)w,2.0*(GLfloat)h/(GLfloat)w,-2.0,2.0,-10.0,10.0); +glMatrixMode(GL_MODELVIEW); +glLoadIdentity(); +} + + +int main(int argc,char **argv) +{ +glutInit(&argc,argv); +glutInitDisplayMode(GLUT_DOUBLE|GLUT_RGB|GLUT_DEPTH); +glutInitWindowSize(500,500); +glutInitWindowPosition(0,0); +glutCreateWindow("Rolling Ball"); +glutReshapeFunc(myreshape); +glutDisplayFunc(display); +glutIdleFunc(spinsphere); +myinit(); +glutMainLoop(); +return 0; +} \ No newline at end of file diff --git a/animation_builds/RotPyr b/animation_builds/RotPyr new file mode 100755 index 0000000..6f5affa Binary files /dev/null and b/animation_builds/RotPyr differ diff --git a/animation_builds/RotPyr.cpp b/animation_builds/RotPyr.cpp new file mode 100644 index 0000000..493f2cb --- /dev/null +++ b/animation_builds/RotPyr.cpp @@ -0,0 +1,106 @@ +//#include // for MS Windows +#include // GLUT, include glu.h and gl.h + +/* Global variables */ +char title[] = "Rotating Pyramid"; +GLfloat anglePyramid = 0.0f; // Rotational angle for pyramid +int refreshMills = 15; // refresh interval in milliseconds + +/* Initialize OpenGL Graphics */ +void initGL() { + glClearColor(0.0f, 0.0f, 0.0f, 1.0f); // Set background color to black and opaque + glClearDepth(1.0f); // Set background depth to farthest + glEnable(GL_DEPTH_TEST); // Enable depth testing for z-culling + glDepthFunc(GL_LEQUAL); // Set the type of depth-test + glShadeModel(GL_SMOOTH); // Enable smooth shading + glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); // Nice perspective corrections +} + +/* Handler for window-repaint event. Called back when the window first appears and + whenever the window needs to be re-painted. */ +void display() { + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Clear color and depth buffers + glMatrixMode(GL_MODELVIEW); // To operate on model-view matrix + + // Render a pyramid consists of 4 triangles + glLoadIdentity(); // Reset the model-view matrix + glTranslatef(-1.5f, 1.0f, -6.5f); // Move left and into the screen + glRotatef(anglePyramid, 1.0f, 1.0f, 0.0f); // Rotate about the (1,1,0)-axis + + glBegin(GL_TRIANGLES); // Begin drawing the pyramid with 4 triangles + // Front + glColor3f(1.0f, 0.0f, 0.0f); // Red + glVertex3f( 0.0f, 1.0f, 0.0f); + glColor3f(0.0f, 1.0f, 0.0f); // Green + glVertex3f(-1.0f, -1.0f, 1.0f); + glColor3f(0.0f, 0.0f, 1.0f); // Blue + glVertex3f(1.0f, -1.0f, 1.0f); + + // Right + glColor3f(1.0f, 0.0f, 0.0f); // Red + glVertex3f(0.0f, 1.0f, 0.0f); + glColor3f(0.0f, 0.0f, 1.0f); // Blue + glVertex3f(1.0f, -1.0f, 1.0f); + glColor3f(0.0f, 1.0f, 0.0f); // Green + glVertex3f(1.0f, -1.0f, -1.0f); + + // Back + glColor3f(1.0f, 0.0f, 0.0f); // Red + glVertex3f(0.0f, 1.0f, 0.0f); + glColor3f(0.0f, 1.0f, 0.0f); // Green + glVertex3f(1.0f, -1.0f, -1.0f); + glColor3f(0.0f, 0.0f, 1.0f); // Blue + glVertex3f(-1.0f, -1.0f, -1.0f); + + // Left + glColor3f(1.0f,0.0f,0.0f); // Red + glVertex3f( 0.0f, 1.0f, 0.0f); + glColor3f(0.0f,0.0f,1.0f); // Blue + glVertex3f(-1.0f,-1.0f,-1.0f); + glColor3f(0.0f,1.0f,0.0f); // Green + glVertex3f(-1.0f,-1.0f, 1.0f); + glEnd(); // Done drawing the pyramid + + glutSwapBuffers(); // Swap the front and back frame buffers (double buffering) + + // Update the rotational angle after each refresh + anglePyramid += 0.2f; +} + +/* Called back when timer expired [NEW] */ +void timer(int value) { + glutPostRedisplay(); // Post re-paint request to activate display() + glutTimerFunc(refreshMills, timer, 0); // next timer call milliseconds later +} + +/* Handler for window re-size event. Called back when the window first appears and + whenever the window is re-sized with its new width and height */ +void reshape(GLsizei width, GLsizei height) { // GLsizei for non-negative integer + // Compute aspect ratio of the new window + if (height == 0) height = 1; // To prevent divide by 0 + GLfloat aspect = (GLfloat)width / (GLfloat)height; + + // Set the viewport to cover the new window + glViewport(0, 0, width, height); + + // Set the aspect ratio of the clipping volume to match the viewport + glMatrixMode(GL_PROJECTION); // To operate on the Projection matrix + glLoadIdentity(); // Reset + // Enable perspective projection with fovy, aspect, zNear and zFar + gluPerspective(45.0f, aspect, 0.1f, 100.0f); +} + +/* Main function: GLUT runs as a console application starting at main() */ +int main(int argc, char** argv) { + glutInit(&argc, argv); // Initialize GLUT + glutInitDisplayMode(GLUT_DOUBLE); // Enable double buffered mode + glutInitWindowSize(640, 480); // Set the window's initial width & height + glutInitWindowPosition(50, 50); // Position the window's initial top-left corner + glutCreateWindow(title); // Create window with the given title + glutDisplayFunc(display); // Register callback handler for window re-paint event + glutReshapeFunc(reshape); // Register callback handler for window re-size event + initGL(); // Our own OpenGL initialization + glutTimerFunc(0, timer, 0); // First timer call immediately + glutMainLoop(); // Enter the infinite event-processing loop + return 0; +} \ No newline at end of file diff --git a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/.qmake.stash b/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/.qmake.stash deleted file mode 100644 index 7b707e4..0000000 --- a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/.qmake.stash +++ /dev/null @@ -1,24 +0,0 @@ -QMAKE_CXX.INCDIRS = \ - /usr/include/c++/5 \ - /usr/include/x86_64-linux-gnu/c++/5 \ - /usr/include/c++/5/backward \ - /usr/lib/gcc/x86_64-linux-gnu/5/include \ - /usr/local/include \ - /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed \ - /usr/include/x86_64-linux-gnu \ - /usr/include -QMAKE_CXX.LIBDIRS = \ - /usr/lib/gcc/x86_64-linux-gnu/5 \ - /usr/lib/x86_64-linux-gnu \ - /usr/lib \ - /lib/x86_64-linux-gnu \ - /lib -QMAKE_CXX.QT_COMPILER_STDCXX = 199711L -QMAKE_CXX.QT_GCC_MAJOR_VERSION = 5 -QMAKE_CXX.QT_GCC_MINOR_VERSION = 4 -QMAKE_CXX.QT_GCC_PATCH_VERSION = 0 -QMAKE_CXX.COMPILER_MACROS = \ - QT_COMPILER_STDCXX \ - QT_GCC_MAJOR_VERSION \ - QT_GCC_MINOR_VERSION \ - QT_GCC_PATCH_VERSION diff --git a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/Makefile b/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/Makefile deleted file mode 100644 index 815aab5..0000000 --- a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/Makefile +++ /dev/null @@ -1,1115 +0,0 @@ -############################################################################# -# Makefile for building: Simulator -# Generated by qmake (3.1) (Qt 5.9.0) -# Project: ../Simulator/Simulator.pro -# Template: app -# Command: /home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/bin/qmake -o Makefile ../Simulator/Simulator.pro -spec linux-g++ CONFIG+=debug CONFIG+=qml_debug -############################################################################# - -MAKEFILE = Makefile - -####### Compiler, tools and options - -CC = gcc -CXX = g++ -DEFINES = -DQT_DEPRECATED_WARNINGS -DQT_QML_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -CFLAGS = -pipe -g -Wall -W -D_REENTRANT -fPIC $(DEFINES) -CXXFLAGS = -pipe -g -std=gnu++11 -Wall -W -D_REENTRANT -fPIC $(DEFINES) -INCPATH = -I../Simulator -I. -I../../../../Qt5.9.0/5.9/gcc_64/include -I../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets -I../../../../Qt5.9.0/5.9/gcc_64/include/QtGui -I../../../../Qt5.9.0/5.9/gcc_64/include/QtCore -I. -isystem /usr/include/libdrm -I. -I../../../../Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++ -QMAKE = /home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/bin/qmake -DEL_FILE = rm -f -CHK_DIR_EXISTS= test -d -MKDIR = mkdir -p -COPY = cp -f -COPY_FILE = cp -f -COPY_DIR = cp -f -R -INSTALL_FILE = install -m 644 -p -INSTALL_PROGRAM = install -m 755 -p -INSTALL_DIR = cp -f -R -QINSTALL_FILE = /home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/bin/qmake -install qinstall file -QINSTALL_PROGRAM = /home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/bin/qmake -install qinstall program -QINSTALL_DIR = /home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/bin/qmake -install qinstall directory -DEL_FILE = rm -f -SYMLINK = ln -f -s -DEL_DIR = rmdir -MOVE = mv -f -TAR = tar -cf -COMPRESS = gzip -9f -DISTNAME = Simulator1.0.0 -DISTDIR = /home/ayushmalviya27/Desktop/MUSoC/PhySim/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/.tmp/Simulator1.0.0 -LINK = g++ -LFLAGS = -Wl,-rpath,/home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/lib -LIBS = $(SUBLIBS) -L/home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/lib -lQt5Widgets -lQt5Gui -lQt5Core -lGL -lpthread -AR = ar cqs -RANLIB = -SED = sed -STRIP = strip - -####### Output directory - -OBJECTS_DIR = ./ - -####### Files - -SOURCES = ../Simulator/main.cpp \ - ../Simulator/simulator.cpp qrc_resources.cpp \ - moc_simulator.cpp -OBJECTS = main.o \ - simulator.o \ - qrc_resources.o \ - moc_simulator.o -DIST = ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_pre.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/unix.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/linux.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/sanitize.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base-unix.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-base.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-unix.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/qconfig.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_accessibility_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bootstrap_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designercomponents_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_egl_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eglfsdeviceintegration_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fb_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_glx_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_input_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_kms_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_linuxaccessibility_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_networkauth.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_networkauth_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_purchasing.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_purchasing_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldebug_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldevtools_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickparticles_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_remoteobjects.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_remoteobjects_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_repparser.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_repparser_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_script.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_script_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scripttools.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scripttools_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_service_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_texttospeech.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_texttospeech_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_theme_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uiplugin.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xcb_qpa_lib_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_functions.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_config.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++/qmake.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_post.prf \ - ../Simulator/.qmake.stash \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exclusive_builds.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/toolchain.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_pre.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resolve_config.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_post.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qml_debug.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/warn_on.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resources.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/moc.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/opengl.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/uic.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/thread.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qmake_use.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/file_copies.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/testcase_targets.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exceptions.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/yacc.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/lex.prf \ - ../Simulator/Simulator.pro ../Simulator/simulator.h ../Simulator/main.cpp \ - ../Simulator/simulator.cpp -QMAKE_TARGET = Simulator -DESTDIR = -TARGET = Simulator - - -first: all -####### Build rules - -$(TARGET): ui_simulator.h $(OBJECTS) - $(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS) - -Makefile: ../Simulator/Simulator.pro ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++/qmake.conf ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_pre.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/unix.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/linux.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/sanitize.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base-unix.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-base.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-unix.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/qconfig.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_accessibility_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bootstrap_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designercomponents_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_egl_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eglfsdeviceintegration_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fb_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_glx_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_input_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_kms_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_linuxaccessibility_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_networkauth.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_networkauth_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_purchasing.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_purchasing_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldebug_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldevtools_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickparticles_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_remoteobjects.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_remoteobjects_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_repparser.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_repparser_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_script.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_script_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scripttools.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scripttools_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_service_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_texttospeech.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_texttospeech_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_theme_support_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uiplugin.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xcb_qpa_lib_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_functions.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_config.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++/qmake.conf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_post.prf \ - .qmake.stash \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exclusive_builds.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/toolchain.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_pre.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resolve_config.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_post.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qml_debug.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/warn_on.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resources.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/moc.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/opengl.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/uic.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/thread.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qmake_use.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/file_copies.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/testcase_targets.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exceptions.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/yacc.prf \ - ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/lex.prf \ - ../Simulator/Simulator.pro \ - ../Simulator/resources.qrc \ - ../../../../Qt5.9.0/5.9/gcc_64/lib/libQt5Widgets.prl \ - ../../../../Qt5.9.0/5.9/gcc_64/lib/libQt5Gui.prl \ - ../../../../Qt5.9.0/5.9/gcc_64/lib/libQt5Core.prl - $(QMAKE) -o Makefile ../Simulator/Simulator.pro -spec linux-g++ CONFIG+=debug CONFIG+=qml_debug -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_pre.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/unix.conf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/linux.conf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/sanitize.conf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base.conf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base-unix.conf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-base.conf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-unix.conf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/qconfig.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_accessibility_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bootstrap_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designercomponents_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_egl_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eglfsdeviceintegration_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fb_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_glx_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_input_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_kms_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_linuxaccessibility_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_networkauth.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_networkauth_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_packetprotocol_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_purchasing.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_purchasing_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldebug_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldevtools_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickparticles_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_remoteobjects.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_remoteobjects_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_repparser.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_repparser_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_script.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_script_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scripttools.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scripttools_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_service_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_texttospeech.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_texttospeech_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_theme_support_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uiplugin.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xcb_qpa_lib_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_functions.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_config.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++/qmake.conf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_post.prf: -.qmake.stash: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exclusive_builds.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/toolchain.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_pre.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resolve_config.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_post.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qml_debug.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/warn_on.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resources.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/moc.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/opengl.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/uic.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/thread.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qmake_use.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/file_copies.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/testcase_targets.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exceptions.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/yacc.prf: -../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/lex.prf: -../Simulator/Simulator.pro: -../Simulator/resources.qrc: -../../../../Qt5.9.0/5.9/gcc_64/lib/libQt5Widgets.prl: -../../../../Qt5.9.0/5.9/gcc_64/lib/libQt5Gui.prl: -../../../../Qt5.9.0/5.9/gcc_64/lib/libQt5Core.prl: -qmake: FORCE - @$(QMAKE) -o Makefile ../Simulator/Simulator.pro -spec linux-g++ CONFIG+=debug CONFIG+=qml_debug - -qmake_all: FORCE - - -all: Makefile $(TARGET) - -dist: distdir FORCE - (cd `dirname $(DISTDIR)` && $(TAR) $(DISTNAME).tar $(DISTNAME) && $(COMPRESS) $(DISTNAME).tar) && $(MOVE) `dirname $(DISTDIR)`/$(DISTNAME).tar.gz . && $(DEL_FILE) -r $(DISTDIR) - -distdir: FORCE - @test -d $(DISTDIR) || mkdir -p $(DISTDIR) - $(COPY_FILE) --parents $(DIST) $(DISTDIR)/ - $(COPY_FILE) --parents ../Simulator/resources.qrc $(DISTDIR)/ - $(COPY_FILE) --parents ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/data/dummy.cpp $(DISTDIR)/ - $(COPY_FILE) --parents ../Simulator/simulator.h $(DISTDIR)/ - $(COPY_FILE) --parents ../Simulator/main.cpp ../Simulator/simulator.cpp $(DISTDIR)/ - $(COPY_FILE) --parents ../Simulator/simulator.ui $(DISTDIR)/ - - -clean: compiler_clean - -$(DEL_FILE) $(OBJECTS) - -$(DEL_FILE) *~ core *.core - - -distclean: clean - -$(DEL_FILE) $(TARGET) - -$(DEL_FILE) .qmake.stash - -$(DEL_FILE) Makefile - - -####### Sub-libraries - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -check: first - -benchmark: first - -compiler_rcc_make_all: qrc_resources.cpp -compiler_rcc_clean: - -$(DEL_FILE) qrc_resources.cpp -qrc_resources.cpp: ../Simulator/resources.qrc \ - ../../../../Qt5.9.0/5.9/gcc_64/bin/rcc \ - ../Simulator/icons/button_play_green.png \ - ../Simulator/icons/undo.png \ - ../Simulator/icons/export.png \ - ../Simulator/icons/media_playback_stop.png \ - ../Simulator/icons/exit.png - /home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/bin/rcc -name resources ../Simulator/resources.qrc -o qrc_resources.cpp - -compiler_moc_predefs_make_all: moc_predefs.h -compiler_moc_predefs_clean: - -$(DEL_FILE) moc_predefs.h -moc_predefs.h: ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/data/dummy.cpp - g++ -pipe -g -std=gnu++11 -Wall -W -dM -E -o moc_predefs.h ../../../../Qt5.9.0/5.9/gcc_64/mkspecs/features/data/dummy.cpp - -compiler_moc_header_make_all: moc_simulator.cpp -compiler_moc_header_clean: - -$(DEL_FILE) moc_simulator.cpp -moc_simulator.cpp: ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMainWindow \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmainwindow.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgetsglobal.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtguiglobal.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobal.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig-bootstrapped.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtcore-config.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsystemdetection.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qprocessordetection.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcompilerdetection.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtypeinfo.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsysinfo.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlogging.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qflags.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbasicatomic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_bootstrap.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qgenericatomic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_cxx11.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_msvc.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobalstatic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmutex.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnumeric.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qversiontagging.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtgui-config.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgets-config.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnamespace.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs_impl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs_win.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstring.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qchar.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearray.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrefcount.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qarraydata.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringbuilder.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlist.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qalgorithms.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiterator.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhashfunctions.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpair.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearraylist.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringlist.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qregexp.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringmatcher.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreevent.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qscopedpointer.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmetatype.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvarlengtharray.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontainerfwd.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject_impl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmargins.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpaintdevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrect.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsize.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpoint.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpalette.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcolor.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgb.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgba64.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qbrush.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvector.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qmatrix.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpolygon.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qregion.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdatastream.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiodevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qline.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtransform.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpainterpath.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qimage.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixelformat.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixmap.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qshareddata.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhash.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer_impl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfont.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontmetrics.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontinfo.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qsizepolicy.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcursor.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qkeysequence.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qevent.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvariant.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmap.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdebug.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtextstream.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlocale.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qset.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontiguouscache.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurlquery.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfile.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfiledevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qvector2d.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtouchdevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtabwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qicon.h \ - ../Simulator/simulator.h \ - moc_predefs.h \ - ../../../../Qt5.9.0/5.9/gcc_64/bin/moc - /home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++ -I/home/ayushmalviya27/Desktop/MUSoC/PhySim/Simulator -I/home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/include -I/home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/include/QtWidgets -I/home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/include/QtGui -I/home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/include/QtCore -I. -I/usr/include/c++/5 -I/usr/include/x86_64-linux-gnu/c++/5 -I/usr/include/c++/5/backward -I/usr/lib/gcc/x86_64-linux-gnu/5/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/5/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include ../Simulator/simulator.h -o moc_simulator.cpp - -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: ui_simulator.h -compiler_uic_clean: - -$(DEL_FILE) ui_simulator.h -ui_simulator.h: ../Simulator/simulator.ui \ - ../../../../Qt5.9.0/5.9/gcc_64/bin/uic - /home/ayushmalviya27/Qt5.9.0/5.9/gcc_64/bin/uic ../Simulator/simulator.ui -o ui_simulator.h - -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_rcc_clean compiler_moc_predefs_clean compiler_moc_header_clean compiler_uic_clean - -####### Compile - -main.o: ../Simulator/main.cpp ../Simulator/simulator.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMainWindow \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmainwindow.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgetsglobal.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtguiglobal.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobal.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig-bootstrapped.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtcore-config.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsystemdetection.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qprocessordetection.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcompilerdetection.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtypeinfo.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsysinfo.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlogging.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qflags.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbasicatomic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_bootstrap.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qgenericatomic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_cxx11.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_msvc.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobalstatic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmutex.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnumeric.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qversiontagging.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtgui-config.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgets-config.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnamespace.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs_impl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs_win.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstring.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qchar.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearray.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrefcount.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qarraydata.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringbuilder.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlist.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qalgorithms.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiterator.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhashfunctions.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpair.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearraylist.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringlist.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qregexp.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringmatcher.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreevent.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qscopedpointer.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmetatype.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvarlengtharray.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontainerfwd.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject_impl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmargins.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpaintdevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrect.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsize.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpoint.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpalette.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcolor.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgb.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgba64.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qbrush.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvector.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qmatrix.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpolygon.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qregion.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdatastream.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiodevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qline.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtransform.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpainterpath.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qimage.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixelformat.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixmap.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qshareddata.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhash.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer_impl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfont.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontmetrics.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontinfo.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qsizepolicy.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcursor.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qkeysequence.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qevent.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvariant.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmap.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdebug.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtextstream.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlocale.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qset.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontiguouscache.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurlquery.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfile.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfiledevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qvector2d.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtouchdevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtabwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qicon.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QApplication \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qapplication.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreapplication.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qeventloop.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qdesktopwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qguiapplication.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qinputmethod.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QOpenGLWidget \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qopenglwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QWidget \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/QSurfaceFormat \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qsurfaceformat.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qopengl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qt_windows.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qopengles2ext.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qopenglext.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o main.o ../Simulator/main.cpp - -simulator.o: ../Simulator/simulator.cpp ../Simulator/simulator.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMainWindow \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmainwindow.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgetsglobal.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtguiglobal.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobal.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig-bootstrapped.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtcore-config.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsystemdetection.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qprocessordetection.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcompilerdetection.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtypeinfo.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsysinfo.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlogging.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qflags.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbasicatomic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_bootstrap.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qgenericatomic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_cxx11.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_msvc.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobalstatic.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmutex.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnumeric.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qversiontagging.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtgui-config.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgets-config.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnamespace.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs_impl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs_win.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstring.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qchar.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearray.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrefcount.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qarraydata.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringbuilder.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlist.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qalgorithms.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiterator.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhashfunctions.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpair.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearraylist.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringlist.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qregexp.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringmatcher.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreevent.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qscopedpointer.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmetatype.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvarlengtharray.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontainerfwd.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject_impl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmargins.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpaintdevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrect.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsize.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpoint.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpalette.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcolor.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgb.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgba64.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qbrush.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvector.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qmatrix.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpolygon.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qregion.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdatastream.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiodevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qline.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtransform.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpainterpath.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qimage.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixelformat.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixmap.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qshareddata.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhash.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer_impl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfont.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontmetrics.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontinfo.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qsizepolicy.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcursor.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qkeysequence.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qevent.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvariant.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmap.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdebug.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtextstream.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlocale.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qset.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontiguouscache.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurlquery.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfile.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfiledevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qvector2d.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtouchdevice.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtabwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qicon.h \ - ui_simulator.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/QVariant \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QAction \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qaction.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qactiongroup.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QApplication \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qapplication.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreapplication.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qeventloop.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qdesktopwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qguiapplication.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qinputmethod.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QButtonGroup \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qbuttongroup.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QHeaderView \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qheaderview.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qabstractitemview.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qabstractscrollarea.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qframe.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qabstractitemmodel.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qitemselectionmodel.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qabstractitemdelegate.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qstyleoption.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qabstractspinbox.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qvalidator.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qregularexpression.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qslider.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qabstractslider.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qstyle.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtabbar.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qrubberband.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QLabel \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qlabel.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QListWidget \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qlistwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qlistview.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMenu \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmenu.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMenuBar \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmenubar.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QOpenGLWidget \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qopenglwidget.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QWidget \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/QSurfaceFormat \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qsurfaceformat.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qopengl.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtCore/qt_windows.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qopengles2ext.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtGui/qopenglext.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QPushButton \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qpushbutton.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qabstractbutton.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QRadioButton \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qradiobutton.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QSlider \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QStatusBar \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qstatusbar.h \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QToolBar \ - ../../../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtoolbar.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o simulator.o ../Simulator/simulator.cpp - -qrc_resources.o: qrc_resources.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o qrc_resources.o qrc_resources.cpp - -moc_simulator.o: moc_simulator.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_simulator.o moc_simulator.cpp - -####### Install - -install: FORCE - -uninstall: FORCE - -FORCE: - diff --git a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/Simulator b/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/Simulator deleted file mode 100755 index 0f55c68..0000000 Binary files a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/Simulator and /dev/null differ diff --git a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/main.o b/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/main.o deleted file mode 100644 index 3a97abb..0000000 Binary files a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/main.o and /dev/null differ diff --git a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/moc_predefs.h b/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/moc_predefs.h deleted file mode 100644 index 3fbb93b..0000000 --- a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/moc_predefs.h +++ /dev/null @@ -1,279 +0,0 @@ -#define __SSP_STRONG__ 3 -#define __DBL_MIN_EXP__ (-1021) -#define __cpp_attributes 200809 -#define __UINT_LEAST16_MAX__ 0xffff -#define __ATOMIC_ACQUIRE 2 -#define __FLT_MIN__ 1.17549435082228750797e-38F -#define __GCC_IEC_559_COMPLEX 2 -#define __UINT_LEAST8_TYPE__ unsigned char -#define __SIZEOF_FLOAT80__ 16 -#define __INTMAX_C(c) c ## L -#define __CHAR_BIT__ 8 -#define __UINT8_MAX__ 0xff -#define __WINT_MAX__ 0xffffffffU -#define __cpp_static_assert 200410 -#define __ORDER_LITTLE_ENDIAN__ 1234 -#define __SIZE_MAX__ 0xffffffffffffffffUL -#define __WCHAR_MAX__ 0x7fffffff -#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 -#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 -#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 -#define __DBL_DENORM_MIN__ double(4.94065645841246544177e-324L) -#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 -#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 -#define __GCC_IEC_559 2 -#define __FLT_EVAL_METHOD__ 0 -#define __unix__ 1 -#define __cpp_binary_literals 201304 -#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 -#define __x86_64 1 -#define __cpp_variadic_templates 200704 -#define __UINT_FAST64_MAX__ 0xffffffffffffffffUL -#define __SIG_ATOMIC_TYPE__ int -#define __DBL_MIN_10_EXP__ (-307) -#define __FINITE_MATH_ONLY__ 0 -#define __GNUC_PATCHLEVEL__ 0 -#define __UINT_FAST8_MAX__ 0xff -#define __has_include(STR) __has_include__(STR) -#define __DEC64_MAX_EXP__ 385 -#define __INT8_C(c) c -#define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL -#define __SHRT_MAX__ 0x7fff -#define __LDBL_MAX__ 1.18973149535723176502e+4932L -#define __UINT_LEAST8_MAX__ 0xff -#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 -#define __UINTMAX_TYPE__ long unsigned int -#define __linux 1 -#define __DEC32_EPSILON__ 1E-6DF -#define __unix 1 -#define __UINT32_MAX__ 0xffffffffU -#define __GXX_EXPERIMENTAL_CXX0X__ 1 -#define __LDBL_MAX_EXP__ 16384 -#define __WINT_MIN__ 0U -#define __linux__ 1 -#define __SCHAR_MAX__ 0x7f -#define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1) -#define __INT64_C(c) c ## L -#define __DBL_DIG__ 15 -#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 -#define __SIZEOF_INT__ 4 -#define __SIZEOF_POINTER__ 8 -#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 -#define __USER_LABEL_PREFIX__ -#define __STDC_HOSTED__ 1 -#define __LDBL_HAS_INFINITY__ 1 -#define __FLT_EPSILON__ 1.19209289550781250000e-7F -#define __GXX_WEAK__ 1 -#define __LDBL_MIN__ 3.36210314311209350626e-4932L -#define __DEC32_MAX__ 9.999999E96DF -#define __INT32_MAX__ 0x7fffffff -#define __SIZEOF_LONG__ 8 -#define __STDC_IEC_559__ 1 -#define __STDC_ISO_10646__ 201505L -#define __UINT16_C(c) c -#define __DECIMAL_DIG__ 21 -#define __gnu_linux__ 1 -#define __has_include_next(STR) __has_include_next__(STR) -#define __LDBL_HAS_QUIET_NAN__ 1 -#define __GNUC__ 5 -#define __GXX_RTTI 1 -#define __MMX__ 1 -#define __cpp_delegating_constructors 200604 -#define __FLT_HAS_DENORM__ 1 -#define __SIZEOF_LONG_DOUBLE__ 16 -#define __BIGGEST_ALIGNMENT__ 16 -#define __STDC_UTF_16__ 1 -#define __DBL_MAX__ double(1.79769313486231570815e+308L) -#define __cpp_raw_strings 200710 -#define __INT_FAST32_MAX__ 0x7fffffffffffffffL -#define __DBL_HAS_INFINITY__ 1 -#define __INT64_MAX__ 0x7fffffffffffffffL -#define __DEC32_MIN_EXP__ (-94) -#define __INT_FAST16_TYPE__ long int -#define __LDBL_HAS_DENORM__ 1 -#define __cplusplus 201103L -#define __cpp_ref_qualifiers 200710 -#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL -#define __INT_LEAST32_MAX__ 0x7fffffff -#define __DEC32_MIN__ 1E-95DF -#define __DEPRECATED 1 -#define __DBL_MAX_EXP__ 1024 -#define __DEC128_EPSILON__ 1E-33DL -#define __SSE2_MATH__ 1 -#define __ATOMIC_HLE_RELEASE 131072 -#define __PTRDIFF_MAX__ 0x7fffffffffffffffL -#define __amd64 1 -#define __STDC_NO_THREADS__ 1 -#define __ATOMIC_HLE_ACQUIRE 65536 -#define __GNUG__ 5 -#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL -#define __SIZEOF_SIZE_T__ 8 -#define __cpp_rvalue_reference 200610 -#define __cpp_nsdmi 200809 -#define __SIZEOF_WINT_T__ 4 -#define __cpp_initializer_lists 200806 -#define __GCC_HAVE_DWARF2_CFI_ASM 1 -#define __GXX_ABI_VERSION 1009 -#define __FLT_MIN_EXP__ (-125) -#define __cpp_lambdas 200907 -#define __INT_FAST64_TYPE__ long int -#define __DBL_MIN__ double(2.22507385850720138309e-308L) -#define __LP64__ 1 -#define __DECIMAL_BID_FORMAT__ 1 -#define __DEC128_MIN__ 1E-6143DL -#define __REGISTER_PREFIX__ -#define __UINT16_MAX__ 0xffff -#define __DBL_HAS_DENORM__ 1 -#define __UINT8_TYPE__ unsigned char -#define __NO_INLINE__ 1 -#define __FLT_MANT_DIG__ 24 -#define __VERSION__ "5.4.0 20160609" -#define __UINT64_C(c) c ## UL -#define __cpp_unicode_characters 200704 -#define _STDC_PREDEF_H 1 -#define __GCC_ATOMIC_INT_LOCK_FREE 2 -#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ -#define __STDC_IEC_559_COMPLEX__ 1 -#define __INT32_C(c) c -#define __DEC64_EPSILON__ 1E-15DD -#define __ORDER_PDP_ENDIAN__ 3412 -#define __DEC128_MIN_EXP__ (-6142) -#define __INT_FAST32_TYPE__ long int -#define __UINT_LEAST16_TYPE__ short unsigned int -#define unix 1 -#define __INT16_MAX__ 0x7fff -#define __cpp_rtti 199711 -#define __SIZE_TYPE__ long unsigned int -#define __UINT64_MAX__ 0xffffffffffffffffUL -#define __INT8_TYPE__ signed char -#define __ELF__ 1 -#define __FLT_RADIX__ 2 -#define __INT_LEAST16_TYPE__ short int -#define __LDBL_EPSILON__ 1.08420217248550443401e-19L -#define __UINTMAX_C(c) c ## UL -#define __GLIBCXX_BITSIZE_INT_N_0 128 -#define __k8 1 -#define __SIG_ATOMIC_MAX__ 0x7fffffff -#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 -#define __SIZEOF_PTRDIFF_T__ 8 -#define __x86_64__ 1 -#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF -#define __INT_FAST16_MAX__ 0x7fffffffffffffffL -#define __UINT_FAST32_MAX__ 0xffffffffffffffffUL -#define __UINT_LEAST64_TYPE__ long unsigned int -#define __FLT_HAS_QUIET_NAN__ 1 -#define __FLT_MAX_10_EXP__ 38 -#define __LONG_MAX__ 0x7fffffffffffffffL -#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL -#define __FLT_HAS_INFINITY__ 1 -#define __cpp_unicode_literals 200710 -#define __UINT_FAST16_TYPE__ long unsigned int -#define __DEC64_MAX__ 9.999999999999999E384DD -#define __CHAR16_TYPE__ short unsigned int -#define __PRAGMA_REDEFINE_EXTNAME 1 -#define __INT_LEAST16_MAX__ 0x7fff -#define __DEC64_MANT_DIG__ 16 -#define __UINT_LEAST32_MAX__ 0xffffffffU -#define __GCC_ATOMIC_LONG_LOCK_FREE 2 -#define __INT_LEAST64_TYPE__ long int -#define __INT16_TYPE__ short int -#define __INT_LEAST8_TYPE__ signed char -#define __DEC32_MAX_EXP__ 97 -#define __INT_FAST8_MAX__ 0x7f -#define __INTPTR_MAX__ 0x7fffffffffffffffL -#define linux 1 -#define __cpp_range_based_for 200907 -#define __SSE2__ 1 -#define __EXCEPTIONS 1 -#define __LDBL_MANT_DIG__ 64 -#define __DBL_HAS_QUIET_NAN__ 1 -#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) -#define __code_model_small__ 1 -#define __k8__ 1 -#define __INTPTR_TYPE__ long int -#define __UINT16_TYPE__ short unsigned int -#define __WCHAR_TYPE__ int -#define __SIZEOF_FLOAT__ 4 -#define __UINTPTR_MAX__ 0xffffffffffffffffUL -#define __DEC64_MIN_EXP__ (-382) -#define __cpp_decltype 200707 -#define __INT_FAST64_MAX__ 0x7fffffffffffffffL -#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 -#define __FLT_DIG__ 6 -#define __UINT_FAST64_TYPE__ long unsigned int -#define __INT_MAX__ 0x7fffffff -#define __amd64__ 1 -#define __INT64_TYPE__ long int -#define __FLT_MAX_EXP__ 128 -#define __ORDER_BIG_ENDIAN__ 4321 -#define __DBL_MANT_DIG__ 53 -#define __cpp_inheriting_constructors 200802 -#define __SIZEOF_FLOAT128__ 16 -#define __INT_LEAST64_MAX__ 0x7fffffffffffffffL -#define __DEC64_MIN__ 1E-383DD -#define __WINT_TYPE__ unsigned int -#define __UINT_LEAST32_TYPE__ unsigned int -#define __SIZEOF_SHORT__ 2 -#define __SSE__ 1 -#define __LDBL_MIN_EXP__ (-16381) -#define __INT_LEAST8_MAX__ 0x7f -#define __SIZEOF_INT128__ 16 -#define __LDBL_MAX_10_EXP__ 4932 -#define __ATOMIC_RELAXED 0 -#define __DBL_EPSILON__ double(2.22044604925031308085e-16L) -#define _LP64 1 -#define __UINT8_C(c) c -#define __INT_LEAST32_TYPE__ int -#define __SIZEOF_WCHAR_T__ 4 -#define __UINT64_TYPE__ long unsigned int -#define __INT_FAST8_TYPE__ signed char -#define __GNUC_STDC_INLINE__ 1 -#define __DBL_DECIMAL_DIG__ 17 -#define __STDC_UTF_32__ 1 -#define __FXSR__ 1 -#define __DEC_EVAL_METHOD__ 2 -#define __cpp_runtime_arrays 198712 -#define __UINT32_C(c) c ## U -#define __INTMAX_MAX__ 0x7fffffffffffffffL -#define __cpp_alias_templates 200704 -#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ -#define __FLT_DENORM_MIN__ 1.40129846432481707092e-45F -#define __INT8_MAX__ 0x7f -#define __UINT_FAST32_TYPE__ long unsigned int -#define __CHAR32_TYPE__ unsigned int -#define __FLT_MAX__ 3.40282346638528859812e+38F -#define __cpp_constexpr 200704 -#define __INT32_TYPE__ int -#define __SIZEOF_DOUBLE__ 8 -#define __cpp_exceptions 199711 -#define __INTMAX_TYPE__ long int -#define __DEC128_MAX_EXP__ 6145 -#define __ATOMIC_CONSUME 1 -#define __GNUC_MINOR__ 4 -#define __GLIBCXX_TYPE_INT_N_0 __int128 -#define __UINTMAX_MAX__ 0xffffffffffffffffUL -#define __DEC32_MANT_DIG__ 7 -#define __DBL_MAX_10_EXP__ 308 -#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L -#define __INT16_C(c) c -#define __STDC__ 1 -#define __PTRDIFF_TYPE__ long int -#define __ATOMIC_SEQ_CST 5 -#define __UINT32_TYPE__ unsigned int -#define __UINTPTR_TYPE__ long unsigned int -#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD -#define __DEC128_MANT_DIG__ 34 -#define __LDBL_MIN_10_EXP__ (-4931) -#define __SSE_MATH__ 1 -#define __SIZEOF_LONG_LONG__ 8 -#define __cpp_user_defined_literals 200809 -#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 -#define __LDBL_DIG__ 18 -#define __FLT_DECIMAL_DIG__ 9 -#define __UINT_FAST16_MAX__ 0xffffffffffffffffUL -#define __FLT_MIN_10_EXP__ (-37) -#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 -#define __UINT_FAST8_TYPE__ unsigned char -#define _GNU_SOURCE 1 -#define __ATOMIC_ACQ_REL 4 -#define __ATOMIC_RELEASE 3 diff --git a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/moc_simulator.cpp b/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/moc_simulator.cpp deleted file mode 100644 index 290f20d..0000000 --- a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/moc_simulator.cpp +++ /dev/null @@ -1,114 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'simulator.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../Simulator/simulator.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'simulator.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.9.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -QT_WARNING_PUSH -QT_WARNING_DISABLE_DEPRECATED -struct qt_meta_stringdata_Simulator_t { - QByteArrayData data[3]; - char stringdata0[35]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_Simulator_t, stringdata0) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_Simulator_t qt_meta_stringdata_Simulator = { - { -QT_MOC_LITERAL(0, 0, 9), // "Simulator" -QT_MOC_LITERAL(1, 10, 23), // "on_actionQuit_triggered" -QT_MOC_LITERAL(2, 34, 0) // "" - - }, - "Simulator\0on_actionQuit_triggered\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_Simulator[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 0, 19, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, - - 0 // eod -}; - -void Simulator::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - Simulator *_t = static_cast(_o); - Q_UNUSED(_t) - switch (_id) { - case 0: _t->on_actionQuit_triggered(); break; - default: ; - } - } - Q_UNUSED(_a); -} - -const QMetaObject Simulator::staticMetaObject = { - { &QMainWindow::staticMetaObject, qt_meta_stringdata_Simulator.data, - qt_meta_data_Simulator, qt_static_metacall, nullptr, nullptr} -}; - - -const QMetaObject *Simulator::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *Simulator::qt_metacast(const char *_clname) -{ - if (!_clname) return nullptr; - if (!strcmp(_clname, qt_meta_stringdata_Simulator.stringdata0)) - return static_cast(const_cast< Simulator*>(this)); - return QMainWindow::qt_metacast(_clname); -} - -int Simulator::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QMainWindow::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} -QT_WARNING_POP -QT_END_MOC_NAMESPACE diff --git a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/moc_simulator.o b/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/moc_simulator.o deleted file mode 100644 index ad078ac..0000000 Binary files a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/moc_simulator.o and /dev/null differ diff --git a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/simulator.o b/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/simulator.o deleted file mode 100644 index 28a693e..0000000 Binary files a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/simulator.o and /dev/null differ diff --git a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/ui_simulator.h b/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/ui_simulator.h deleted file mode 100644 index b1f0591..0000000 --- a/build-Simulator-Desktop_Qt_5_9_0_GCC_64bit-Debug/ui_simulator.h +++ /dev/null @@ -1,243 +0,0 @@ -/******************************************************************************** -** Form generated from reading UI file 'simulator.ui' -** -** Created by: Qt User Interface Compiler version 5.9.0 -** -** WARNING! All changes made in this file will be lost when recompiling UI file! -********************************************************************************/ - -#ifndef UI_SIMULATOR_H -#define UI_SIMULATOR_H - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -QT_BEGIN_NAMESPACE - -class Ui_Simulator -{ -public: - QAction *actionReset; - QAction *actionExport; - QAction *actionPlay; - QAction *actionStop; - QAction *actionQuit; - QWidget *centralWidget; - QPushButton *pushButton; - QPushButton *pushButton_2; - QOpenGLWidget *openGLWidget; - QRadioButton *radioButton; - QRadioButton *radioButton_2; - QRadioButton *radioButton_3; - QLabel *label; - QSlider *verticalSlider; - QSlider *verticalSlider_2; - QSlider *verticalSlider_3; - QLabel *label_2; - QLabel *label_3; - QLabel *label_4; - QListWidget *listWidget; - QLabel *label_5; - QLabel *label_6; - QMenuBar *menuBar; - QMenu *menuFile; - QToolBar *mainToolBar; - QStatusBar *statusBar; - - void setupUi(QMainWindow *Simulator) - { - if (Simulator->objectName().isEmpty()) - Simulator->setObjectName(QStringLiteral("Simulator")); - Simulator->setWindowModality(Qt::NonModal); - Simulator->resize(715, 549); - actionReset = new QAction(Simulator); - actionReset->setObjectName(QStringLiteral("actionReset")); - actionReset->setEnabled(true); - QIcon icon; - icon.addFile(QStringLiteral(":/rec/icons/undo.png"), QSize(), QIcon::Normal, QIcon::Off); - actionReset->setIcon(icon); - actionExport = new QAction(Simulator); - actionExport->setObjectName(QStringLiteral("actionExport")); - QIcon icon1; - icon1.addFile(QStringLiteral(":/rec/icons/export.png"), QSize(), QIcon::Normal, QIcon::Off); - actionExport->setIcon(icon1); - actionPlay = new QAction(Simulator); - actionPlay->setObjectName(QStringLiteral("actionPlay")); - QIcon icon2; - icon2.addFile(QStringLiteral(":/rec/icons/button_play_green.png"), QSize(), QIcon::Normal, QIcon::Off); - actionPlay->setIcon(icon2); - actionStop = new QAction(Simulator); - actionStop->setObjectName(QStringLiteral("actionStop")); - QIcon icon3; - icon3.addFile(QStringLiteral(":/rec/icons/media_playback_stop.png"), QSize(), QIcon::Normal, QIcon::Off); - actionStop->setIcon(icon3); - actionQuit = new QAction(Simulator); - actionQuit->setObjectName(QStringLiteral("actionQuit")); - QIcon icon4; - icon4.addFile(QStringLiteral(":/rec/icons/exit.png"), QSize(), QIcon::Normal, QIcon::Off); - actionQuit->setIcon(icon4); - centralWidget = new QWidget(Simulator); - centralWidget->setObjectName(QStringLiteral("centralWidget")); - pushButton = new QPushButton(centralWidget); - pushButton->setObjectName(QStringLiteral("pushButton")); - pushButton->setGeometry(QRect(360, 420, 61, 21)); - pushButton_2 = new QPushButton(centralWidget); - pushButton_2->setObjectName(QStringLiteral("pushButton_2")); - pushButton_2->setGeometry(QRect(240, 420, 71, 21)); - openGLWidget = new QOpenGLWidget(centralWidget); - openGLWidget->setObjectName(QStringLiteral("openGLWidget")); - openGLWidget->setGeometry(QRect(120, 40, 441, 361)); - openGLWidget->setAutoFillBackground(false); - radioButton = new QRadioButton(centralWidget); - radioButton->setObjectName(QStringLiteral("radioButton")); - radioButton->setGeometry(QRect(0, 130, 112, 23)); - radioButton_2 = new QRadioButton(centralWidget); - radioButton_2->setObjectName(QStringLiteral("radioButton_2")); - radioButton_2->setGeometry(QRect(0, 170, 81, 21)); - radioButton_3 = new QRadioButton(centralWidget); - radioButton_3->setObjectName(QStringLiteral("radioButton_3")); - radioButton_3->setGeometry(QRect(0, 210, 71, 21)); - label = new QLabel(centralWidget); - label->setObjectName(QStringLiteral("label")); - label->setGeometry(QRect(0, 100, 101, 31)); - verticalSlider = new QSlider(centralWidget); - verticalSlider->setObjectName(QStringLiteral("verticalSlider")); - verticalSlider->setGeometry(QRect(600, 140, 16, 160)); - verticalSlider->setOrientation(Qt::Vertical); - verticalSlider_2 = new QSlider(centralWidget); - verticalSlider_2->setObjectName(QStringLiteral("verticalSlider_2")); - verticalSlider_2->setGeometry(QRect(640, 140, 16, 160)); - verticalSlider_2->setOrientation(Qt::Vertical); - verticalSlider_3 = new QSlider(centralWidget); - verticalSlider_3->setObjectName(QStringLiteral("verticalSlider_3")); - verticalSlider_3->setGeometry(QRect(680, 140, 16, 160)); - verticalSlider_3->setOrientation(Qt::Vertical); - label_2 = new QLabel(centralWidget); - label_2->setObjectName(QStringLiteral("label_2")); - label_2->setGeometry(QRect(590, 310, 31, 17)); - label_3 = new QLabel(centralWidget); - label_3->setObjectName(QStringLiteral("label_3")); - label_3->setGeometry(QRect(630, 310, 31, 17)); - label_4 = new QLabel(centralWidget); - label_4->setObjectName(QStringLiteral("label_4")); - label_4->setGeometry(QRect(670, 310, 31, 17)); - listWidget = new QListWidget(centralWidget); - new QListWidgetItem(listWidget); - new QListWidgetItem(listWidget); - new QListWidgetItem(listWidget); - new QListWidgetItem(listWidget); - new QListWidgetItem(listWidget); - listWidget->setObjectName(QStringLiteral("listWidget")); - listWidget->setGeometry(QRect(10, 300, 81, 91)); - label_5 = new QLabel(centralWidget); - label_5->setObjectName(QStringLiteral("label_5")); - label_5->setGeometry(QRect(10, 280, 91, 17)); - label_6 = new QLabel(centralWidget); - label_6->setObjectName(QStringLiteral("label_6")); - label_6->setGeometry(QRect(580, 110, 131, 21)); - Simulator->setCentralWidget(centralWidget); - menuBar = new QMenuBar(Simulator); - menuBar->setObjectName(QStringLiteral("menuBar")); - menuBar->setGeometry(QRect(0, 0, 715, 22)); - menuFile = new QMenu(menuBar); - menuFile->setObjectName(QStringLiteral("menuFile")); - menuFile->setEnabled(true); - Simulator->setMenuBar(menuBar); - mainToolBar = new QToolBar(Simulator); - mainToolBar->setObjectName(QStringLiteral("mainToolBar")); - Simulator->addToolBar(Qt::TopToolBarArea, mainToolBar); - statusBar = new QStatusBar(Simulator); - statusBar->setObjectName(QStringLiteral("statusBar")); - Simulator->setStatusBar(statusBar); - - menuBar->addAction(menuFile->menuAction()); - menuFile->addAction(actionReset); - menuFile->addAction(actionExport); - menuFile->addAction(actionPlay); - menuFile->addAction(actionStop); - menuFile->addAction(actionQuit); - mainToolBar->addAction(actionPlay); - mainToolBar->addAction(actionStop); - mainToolBar->addAction(actionQuit); - - retranslateUi(Simulator); - - QMetaObject::connectSlotsByName(Simulator); - } // setupUi - - void retranslateUi(QMainWindow *Simulator) - { - Simulator->setWindowTitle(QApplication::translate("Simulator", "Simulator", Q_NULLPTR)); - actionReset->setText(QApplication::translate("Simulator", "Reset", Q_NULLPTR)); -#ifndef QT_NO_TOOLTIP - actionReset->setToolTip(QApplication::translate("Simulator", "Reset all the settings", Q_NULLPTR)); -#endif // QT_NO_TOOLTIP - actionExport->setText(QApplication::translate("Simulator", "Export", Q_NULLPTR)); -#ifndef QT_NO_TOOLTIP - actionExport->setToolTip(QApplication::translate("Simulator", "Export the animation as a video file", Q_NULLPTR)); -#endif // QT_NO_TOOLTIP - actionPlay->setText(QApplication::translate("Simulator", "Play", Q_NULLPTR)); -#ifndef QT_NO_TOOLTIP - actionPlay->setToolTip(QApplication::translate("Simulator", "Start the animation", Q_NULLPTR)); -#endif // QT_NO_TOOLTIP - actionStop->setText(QApplication::translate("Simulator", "Stop", Q_NULLPTR)); -#ifndef QT_NO_TOOLTIP - actionStop->setToolTip(QApplication::translate("Simulator", "Stop the animation", Q_NULLPTR)); -#endif // QT_NO_TOOLTIP - actionQuit->setText(QApplication::translate("Simulator", "Quit", Q_NULLPTR)); -#ifndef QT_NO_TOOLTIP - actionQuit->setToolTip(QApplication::translate("Simulator", "Quit the Simulator", Q_NULLPTR)); -#endif // QT_NO_TOOLTIP - pushButton->setText(QApplication::translate("Simulator", "Stop", Q_NULLPTR)); - pushButton_2->setText(QApplication::translate("Simulator", "Start", Q_NULLPTR)); - radioButton->setText(QApplication::translate("Simulator", "Cube", Q_NULLPTR)); - radioButton_2->setText(QApplication::translate("Simulator", "Pyramid", Q_NULLPTR)); - radioButton_3->setText(QApplication::translate("Simulator", "Sphere", Q_NULLPTR)); - label->setText(QApplication::translate("Simulator", "Choose Shape:", Q_NULLPTR)); - label_2->setText(QApplication::translate("Simulator", "xRot", Q_NULLPTR)); - label_3->setText(QApplication::translate("Simulator", "yRot", Q_NULLPTR)); - label_4->setText(QApplication::translate("Simulator", "zRot", Q_NULLPTR)); - - const bool __sortingEnabled = listWidget->isSortingEnabled(); - listWidget->setSortingEnabled(false); - QListWidgetItem *___qlistwidgetitem = listWidget->item(0); - ___qlistwidgetitem->setText(QApplication::translate("Simulator", "Bouncing", Q_NULLPTR)); - QListWidgetItem *___qlistwidgetitem1 = listWidget->item(1); - ___qlistwidgetitem1->setText(QApplication::translate("Simulator", "Collision", Q_NULLPTR)); - QListWidgetItem *___qlistwidgetitem2 = listWidget->item(2); - ___qlistwidgetitem2->setText(QApplication::translate("Simulator", "Bursting", Q_NULLPTR)); - QListWidgetItem *___qlistwidgetitem3 = listWidget->item(3); - ___qlistwidgetitem3->setText(QApplication::translate("Simulator", "Rolling", Q_NULLPTR)); - QListWidgetItem *___qlistwidgetitem4 = listWidget->item(4); - ___qlistwidgetitem4->setText(QApplication::translate("Simulator", "Rotating", Q_NULLPTR)); - listWidget->setSortingEnabled(__sortingEnabled); - - label_5->setText(QApplication::translate("Simulator", "Select Action:", Q_NULLPTR)); - label_6->setText(QApplication::translate("Simulator", "Adjust Orientation:", Q_NULLPTR)); - menuFile->setTitle(QApplication::translate("Simulator", "File", Q_NULLPTR)); - } // retranslateUi - -}; - -namespace Ui { - class Simulator: public Ui_Simulator {}; -} // namespace Ui - -QT_END_NAMESPACE - -#endif // UI_SIMULATOR_H diff --git a/Simulator/main.cpp b/main.cpp similarity index 66% rename from Simulator/main.cpp rename to main.cpp index e5e11f6..b48f94e 100644 --- a/Simulator/main.cpp +++ b/main.cpp @@ -1,11 +1,10 @@ -#include "simulator.h" +#include "mainwindow.h" #include -#include int main(int argc, char *argv[]) { QApplication a(argc, argv); - Simulator w; + MainWindow w; w.show(); return a.exec(); diff --git a/mainwindow.cpp b/mainwindow.cpp new file mode 100644 index 0000000..ff1d499 --- /dev/null +++ b/mainwindow.cpp @@ -0,0 +1,55 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" +#include +#include +#include +#include +#include +#include + +MainWindow::MainWindow(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::MainWindow) +{ + ui->setupUi(this); +} + +MainWindow::~MainWindow() +{ + delete ui; +} + +void MainWindow::on_pushButton_clicked() +{ + QString file = "/home/ayushmalviya27/Desktop/MUSoC/PhySim/animation_builds/CubeDance"; + QProcess::startDetached(file); +} + +void MainWindow::on_pushButton_2_clicked() +{ + QString file = "/home/ayushmalviya27/Desktop/MUSoC/PhySim/animation_builds/CubeRotate"; + QProcess::startDetached(file); +} + +void MainWindow::on_pushButton_3_clicked() +{ + QString file = "/home/ayushmalviya27/Desktop/MUSoC/PhySim/animation_builds/RollingBall"; + QProcess::startDetached(file); +} + +void MainWindow::on_pushButton_4_clicked() +{ + QString file = "/home/ayushmalviya27/Desktop/MUSoC/PhySim/animation_builds/BallBounce"; + QProcess::startDetached(file); +} + +void MainWindow::on_pushButton_5_clicked() +{ + QApplication::quit(); +} + +void MainWindow::on_pushButton_6_clicked() +{ + QString file = "/home/ayushmalviya27/Desktop/MUSoC/PhySim/animation_builds/RotPyr"; + QProcess::startDetached(file); +} diff --git a/mainwindow.h b/mainwindow.h new file mode 100644 index 0000000..27854ef --- /dev/null +++ b/mainwindow.h @@ -0,0 +1,35 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include + +namespace Ui { +class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + +private slots: + void on_pushButton_clicked(); + + void on_pushButton_2_clicked(); + + void on_pushButton_3_clicked(); + + void on_pushButton_4_clicked(); + + void on_pushButton_5_clicked(); + + void on_pushButton_6_clicked(); + +private: + Ui::MainWindow *ui; +}; + +#endif // MAINWINDOW_H diff --git a/mainwindow.ui b/mainwindow.ui new file mode 100644 index 0000000..3972c29 --- /dev/null +++ b/mainwindow.ui @@ -0,0 +1,126 @@ + + + MainWindow + + + + 0 + 0 + 518 + 368 + + + + MainWindow + + + + + + 80 + 140 + 121 + 25 + + + + Cube Dance + + + + + + 270 + 140 + 131 + 25 + + + + Cube Rotation + + + + + + 60 + 0 + 391 + 61 + + + + <html><head/><body><p><span style=" font-size:22pt;">Welcome to Physics Simulator.</span></p></body></html> + + + + + + 70 + 70 + 371 + 17 + + + + To start, select an animation from the below options + + + + + + 80 + 220 + 111 + 25 + + + + Rolling Ball + + + + + + 270 + 220 + 131 + 25 + + + + Bouncing Ball + + + + + + 170 + 290 + 89 + 25 + + + + Exit + + + + + + 170 + 180 + 131 + 25 + + + + Spinning Pyramid + + + + + + + +