mirror of
https://github.com/overte-org/overte.git
synced 2025-07-29 20:16:14 +02:00
In the beginning.
This commit is contained in:
parent
c9e69c23a3
commit
3101663b7b
4 changed files with 66 additions and 0 deletions
|
@ -23,4 +23,7 @@ if (BUILD_TOOLS)
|
||||||
|
|
||||||
add_subdirectory(oven)
|
add_subdirectory(oven)
|
||||||
set_target_properties(oven PROPERTIES FOLDER "Tools")
|
set_target_properties(oven PROPERTIES FOLDER "Tools")
|
||||||
|
|
||||||
|
add_subdirectory(auto-tester)
|
||||||
|
set_target_properties(auto-tester PROPERTIES FOLDER "Tools")
|
||||||
endif()
|
endif()
|
||||||
|
|
5
tools/auto-tester/CMakeLists.txt
Normal file
5
tools/auto-tester/CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
cmake_minimum_required(VERSION 3.9)
|
||||||
|
|
||||||
|
project (auto-tester)
|
||||||
|
|
||||||
|
add_executable(auto-tester src/main.cpp)
|
37
tools/auto-tester/src/autoTester.h
Normal file
37
tools/auto-tester/src/autoTester.h
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
//
|
||||||
|
// AutoTester.h
|
||||||
|
// zone/ambientLightInheritence
|
||||||
|
//
|
||||||
|
// Created by Nissim Hadar on 2 Nov 2017.
|
||||||
|
// Copyright 2013 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef hifi_AutoTester_h
|
||||||
|
#define hifi_AutoTester_h
|
||||||
|
|
||||||
|
////#include <QtWidgets/QMainWindow>
|
||||||
|
////#include "ui_autoTester.h"
|
||||||
|
////#include "Test.h"
|
||||||
|
////
|
||||||
|
////class AutoTester : public QMainWindow
|
||||||
|
////{
|
||||||
|
//// Q_OBJECT
|
||||||
|
////
|
||||||
|
////public:
|
||||||
|
//// AutoTester(QWidget *parent = Q_NULLPTR);
|
||||||
|
////
|
||||||
|
////private slots:
|
||||||
|
//// void on_evaluateTestsButton_clicked();
|
||||||
|
//// void on_createTestButton_clicked();
|
||||||
|
//// void on_closeButton_clicked();
|
||||||
|
////
|
||||||
|
////private:
|
||||||
|
//// Ui::AutoTesterClass ui;
|
||||||
|
////
|
||||||
|
//// Test test;
|
||||||
|
////};
|
||||||
|
|
||||||
|
#endif // hifi_AutoTester_h
|
21
tools/auto-tester/src/main.cpp
Normal file
21
tools/auto-tester/src/main.cpp
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
//
|
||||||
|
// Test.cpp
|
||||||
|
//
|
||||||
|
// Created by Nissim Hadar on 2 Nov 2017.
|
||||||
|
// Copyright 2013 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
#include <QtWidgets/QApplication>
|
||||||
|
#include "autoTester.h"
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
//// QApplication application(argc, argv);
|
||||||
|
|
||||||
|
//// AutoTester autoTester;
|
||||||
|
//// autoTester.show();
|
||||||
|
|
||||||
|
//// return application.exec();
|
||||||
|
}
|
Loading…
Reference in a new issue