setup: added basic cmake project structure

Added cmake build instructions for app, lib and test.
Included Qt via environment variable QT_DIR.
Included CxxTest via environment variable CXX_TEST_DIR.
Added scripts for setup, syncing master and publishing features.
Added dlls for QT on Windows.
This commit is contained in:
Eberhard Graether
2014-03-24 15:40:50 +01:00
parent e763532523
commit 4fa1e22035
34 changed files with 493 additions and 14 deletions
+5
View File
@@ -0,0 +1,5 @@
add_files(
LIB_FILES
utility.h
utility.cpp
)
+13
View File
@@ -0,0 +1,13 @@
#include "utility.h"
#include <iostream>
void hello()
{
std::cout << "hello world!" << std::endl;
}
int one()
{
return 1;
}
+3
View File
@@ -0,0 +1,3 @@
void hello();
int one();