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:
@@ -0,0 +1,5 @@
|
||||
add_files(
|
||||
LIB_FILES
|
||||
utility.h
|
||||
utility.cpp
|
||||
)
|
||||
@@ -0,0 +1,13 @@
|
||||
#include "utility.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
void hello()
|
||||
{
|
||||
std::cout << "hello world!" << std::endl;
|
||||
}
|
||||
|
||||
int one()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
void hello();
|
||||
|
||||
int one();
|
||||
Reference in New Issue
Block a user