summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/Adir
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-10-11 12:17:32 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-10-24 09:50:58 (GMT)
commite485ba12193d36ffc4faee89bb80dbe611ad7e82 (patch)
tree1dbbf88c26eb655738a789e67121ee8fca038fd5 /Tests/QtAutogen/Adir
parent7ce65c3c9738414213ae307005277c774daea669 (diff)
downloadCMake-e485ba12193d36ffc4faee89bb80dbe611ad7e82.zip
CMake-e485ba12193d36ffc4faee89bb80dbe611ad7e82.tar.gz
CMake-e485ba12193d36ffc4faee89bb80dbe611ad7e82.tar.bz2
Rename the QtAutomoc tests to QtAutogen.
Diffstat (limited to 'Tests/QtAutogen/Adir')
-rw-r--r--Tests/QtAutogen/Adir/CMakeLists.txt8
-rw-r--r--Tests/QtAutogen/Adir/libA.cpp13
-rw-r--r--Tests/QtAutogen/Adir/libA.h18
3 files changed, 39 insertions, 0 deletions
diff --git a/Tests/QtAutogen/Adir/CMakeLists.txt b/Tests/QtAutogen/Adir/CMakeLists.txt
new file mode 100644
index 0000000..a1c36ff
--- /dev/null
+++ b/Tests/QtAutogen/Adir/CMakeLists.txt
@@ -0,0 +1,8 @@
+
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+set(CMAKE_AUTOMOC ON)
+set(CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE ON)
+
+add_library(libA SHARED libA.cpp)
+target_link_libraries(libA LINK_PUBLIC ${QT_QTCORE_TARGET})
+generate_export_header(libA)
diff --git a/Tests/QtAutogen/Adir/libA.cpp b/Tests/QtAutogen/Adir/libA.cpp
new file mode 100644
index 0000000..3968c44
--- /dev/null
+++ b/Tests/QtAutogen/Adir/libA.cpp
@@ -0,0 +1,13 @@
+
+#include "libA.h"
+
+LibA::LibA(QObject *parent)
+ : QObject(parent)
+{
+
+}
+
+int LibA::foo()
+{
+ return 0;
+}
diff --git a/Tests/QtAutogen/Adir/libA.h b/Tests/QtAutogen/Adir/libA.h
new file mode 100644
index 0000000..03ad1e0
--- /dev/null
+++ b/Tests/QtAutogen/Adir/libA.h
@@ -0,0 +1,18 @@
+
+#ifndef LIBA_H
+#define LIBA_H
+
+#include "liba_export.h"
+
+#include <QObject>
+
+class LIBA_EXPORT LibA : public QObject
+{
+ Q_OBJECT
+public:
+ explicit LibA(QObject *parent = 0);
+
+ int foo();
+};
+
+#endif