commit a6f4505121af304d02ba17b76f36cfeaee86b740 Author: Lubos Dolezel Date: Sun Jun 9 13:41:42 2013 +0200 initial project import from KDevelop diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..7f1af43 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +project(darling-hfsplus) + +add_executable(darling-hfsplus main.cpp) + +install(TARGETS darling-hfsplus RUNTIME DESTINATION bin) diff --git a/darling-hfsplus.kdev4 b/darling-hfsplus.kdev4 new file mode 100644 index 0000000..2c52f55 --- /dev/null +++ b/darling-hfsplus.kdev4 @@ -0,0 +1,4 @@ +[Project] +Name=darling-hfsplus +Manager=KDevCMakeManager +VersionControl=kdevgit diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..8bb47f1 --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include + +int main(int argc, char **argv) { + std::cout << "Hello, world!" << std::endl; + return 0; +}