From 9dcb8f383566a4a183b288b51b53f30d17a66de8 Mon Sep 17 00:00:00 2001 From: Kilian Kurt Hofmann Date: Fri, 13 Jan 2017 14:59:22 +0100 Subject: [PATCH] Add project files. --- TQInterface.sln | 28 +++++ TQInterface/ReadMe.txt | 40 ++++++ TQInterface/TQInterface.cpp | 11 ++ TQInterface/TQInterface.vcxproj | 158 ++++++++++++++++++++++++ TQInterface/TQInterface.vcxproj.filters | 36 ++++++ TQInterface/stdafx.cpp | 8 ++ TQInterface/stdafx.h | 15 +++ TQInterface/targetver.h | 8 ++ 8 files changed, 304 insertions(+) create mode 100644 TQInterface.sln create mode 100644 TQInterface/ReadMe.txt create mode 100644 TQInterface/TQInterface.cpp create mode 100644 TQInterface/TQInterface.vcxproj create mode 100644 TQInterface/TQInterface.vcxproj.filters create mode 100644 TQInterface/stdafx.cpp create mode 100644 TQInterface/stdafx.h create mode 100644 TQInterface/targetver.h diff --git a/TQInterface.sln b/TQInterface.sln new file mode 100644 index 0000000..3cc7f84 --- /dev/null +++ b/TQInterface.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TQInterface", "TQInterface\TQInterface.vcxproj", "{CB9DBAC9-008E-4EF4-92B1-F6374678423B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CB9DBAC9-008E-4EF4-92B1-F6374678423B}.Debug|x64.ActiveCfg = Debug|x64 + {CB9DBAC9-008E-4EF4-92B1-F6374678423B}.Debug|x64.Build.0 = Debug|x64 + {CB9DBAC9-008E-4EF4-92B1-F6374678423B}.Debug|x86.ActiveCfg = Debug|Win32 + {CB9DBAC9-008E-4EF4-92B1-F6374678423B}.Debug|x86.Build.0 = Debug|Win32 + {CB9DBAC9-008E-4EF4-92B1-F6374678423B}.Release|x64.ActiveCfg = Release|x64 + {CB9DBAC9-008E-4EF4-92B1-F6374678423B}.Release|x64.Build.0 = Release|x64 + {CB9DBAC9-008E-4EF4-92B1-F6374678423B}.Release|x86.ActiveCfg = Release|Win32 + {CB9DBAC9-008E-4EF4-92B1-F6374678423B}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/TQInterface/ReadMe.txt b/TQInterface/ReadMe.txt new file mode 100644 index 0000000..db135eb --- /dev/null +++ b/TQInterface/ReadMe.txt @@ -0,0 +1,40 @@ +======================================================================== + CONSOLE APPLICATION : TQInterface Project Overview +======================================================================== + +AppWizard has created this TQInterface application for you. + +This file contains a summary of what you will find in each of the files that +make up your TQInterface application. + + +TQInterface.vcxproj + This is the main project file for VC++ projects generated using an Application Wizard. + It contains information about the version of Visual C++ that generated the file, and + information about the platforms, configurations, and project features selected with the + Application Wizard. + +TQInterface.vcxproj.filters + This is the filters file for VC++ projects generated using an Application Wizard. + It contains information about the association between the files in your project + and the filters. This association is used in the IDE to show grouping of files with + similar extensions under a specific node (for e.g. ".cpp" files are associated with the + "Source Files" filter). + +TQInterface.cpp + This is the main application source file. + +///////////////////////////////////////////////////////////////////////////// +Other standard files: + +StdAfx.h, StdAfx.cpp + These files are used to build a precompiled header (PCH) file + named TQInterface.pch and a precompiled types file named StdAfx.obj. + +///////////////////////////////////////////////////////////////////////////// +Other notes: + +AppWizard uses "TODO:" comments to indicate parts of the source code you +should add to or customize. + +///////////////////////////////////////////////////////////////////////////// diff --git a/TQInterface/TQInterface.cpp b/TQInterface/TQInterface.cpp new file mode 100644 index 0000000..d73905e --- /dev/null +++ b/TQInterface/TQInterface.cpp @@ -0,0 +1,11 @@ +// TQInterface.cpp : Defines the entry point for the console application. +// + +#include "stdafx.h" + + +int main() +{ + return 0; +} + diff --git a/TQInterface/TQInterface.vcxproj b/TQInterface/TQInterface.vcxproj new file mode 100644 index 0000000..229b74b --- /dev/null +++ b/TQInterface/TQInterface.vcxproj @@ -0,0 +1,158 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + {CB9DBAC9-008E-4EF4-92B1-F6374678423B} + Win32Proj + TQInterface + 8.1 + + + + Application + true + v140 + Unicode + + + Application + false + v140 + true + Unicode + + + Application + true + v140 + Unicode + + + Application + false + v140 + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + + + true + + + false + + + false + + + + + + Level3 + Disabled + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + + + Console + true + + + + + + + Level3 + Disabled + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + + + Console + true + + + + + Level3 + + + MaxSpeed + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + + + Console + true + true + true + + + + + Level3 + + + MaxSpeed + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + + + Console + true + true + true + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/TQInterface/TQInterface.vcxproj.filters b/TQInterface/TQInterface.vcxproj.filters new file mode 100644 index 0000000..141f797 --- /dev/null +++ b/TQInterface/TQInterface.vcxproj.filters @@ -0,0 +1,36 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + + + + Header Files + + + Header Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/TQInterface/stdafx.cpp b/TQInterface/stdafx.cpp new file mode 100644 index 0000000..8016b6c --- /dev/null +++ b/TQInterface/stdafx.cpp @@ -0,0 +1,8 @@ +// stdafx.cpp : source file that includes just the standard includes +// TQInterface.pch will be the pre-compiled header +// stdafx.obj will contain the pre-compiled type information + +#include "stdafx.h" + +// TODO: reference any additional headers you need in STDAFX.H +// and not in this file diff --git a/TQInterface/stdafx.h b/TQInterface/stdafx.h new file mode 100644 index 0000000..b005a83 --- /dev/null +++ b/TQInterface/stdafx.h @@ -0,0 +1,15 @@ +// stdafx.h : include file for standard system include files, +// or project specific include files that are used frequently, but +// are changed infrequently +// + +#pragma once + +#include "targetver.h" + +#include +#include + + + +// TODO: reference additional headers your program requires here diff --git a/TQInterface/targetver.h b/TQInterface/targetver.h new file mode 100644 index 0000000..87c0086 --- /dev/null +++ b/TQInterface/targetver.h @@ -0,0 +1,8 @@ +#pragma once + +// Including SDKDDKVer.h defines the highest available Windows platform. + +// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and +// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. + +#include