mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 08:23:04 +02:00
CMake includes Qt headers
This commit is contained in:
parent
3101663b7b
commit
8433374fb6
4 changed files with 7 additions and 9 deletions
|
@ -2,6 +2,9 @@
|
||||||
add_subdirectory(scribe)
|
add_subdirectory(scribe)
|
||||||
set_target_properties(scribe PROPERTIES FOLDER "Tools")
|
set_target_properties(scribe PROPERTIES FOLDER "Tools")
|
||||||
|
|
||||||
|
add_subdirectory(auto-tester)
|
||||||
|
set_target_properties(auto-tester PROPERTIES FOLDER "Tools")
|
||||||
|
|
||||||
if (BUILD_TOOLS)
|
if (BUILD_TOOLS)
|
||||||
add_subdirectory(udt-test)
|
add_subdirectory(udt-test)
|
||||||
set_target_properties(udt-test PROPERTIES FOLDER "Tools")
|
set_target_properties(udt-test PROPERTIES FOLDER "Tools")
|
||||||
|
@ -23,7 +26,4 @@ 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()
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
cmake_minimum_required(VERSION 3.9)
|
set(TARGET_NAME auto-tester)
|
||||||
|
|
||||||
project (auto-tester)
|
setup_hifi_project(Core Widgets)
|
||||||
|
|
||||||
add_executable(auto-tester src/main.cpp)
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#ifndef hifi_AutoTester_h
|
#ifndef hifi_AutoTester_h
|
||||||
#define hifi_AutoTester_h
|
#define hifi_AutoTester_h
|
||||||
|
|
||||||
////#include <QtWidgets/QMainWindow>
|
#include <QtWidgets/QMainWindow>
|
||||||
////#include "ui_autoTester.h"
|
////#include "ui_autoTester.h"
|
||||||
////#include "Test.h"
|
////#include "Test.h"
|
||||||
////
|
////
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
//// QApplication application(argc, argv);
|
QApplication application(argc, argv);
|
||||||
|
|
||||||
//// AutoTester autoTester;
|
//// AutoTester autoTester;
|
||||||
//// autoTester.show();
|
//// autoTester.show();
|
||||||
|
|
Loading…
Reference in a new issue