In the beginning.

This commit is contained in:
Nissim Hadar 2017-11-10 18:55:07 -08:00
parent c9e69c23a3
commit 3101663b7b
4 changed files with 66 additions and 0 deletions

View file

@ -23,4 +23,7 @@ if (BUILD_TOOLS)
add_subdirectory(oven)
set_target_properties(oven PROPERTIES FOLDER "Tools")
add_subdirectory(auto-tester)
set_target_properties(auto-tester PROPERTIES FOLDER "Tools")
endif()

View file

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 3.9)
project (auto-tester)
add_executable(auto-tester src/main.cpp)

View 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

View 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();
}