Skip to content

Commit

Permalink
initial project import from KDevelop
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-andreas committed Jun 23, 2013
0 parents commit 6209004
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
project(neuralnet)

add_executable(neuralnet main.cpp)

install(TARGETS neuralnet RUNTIME DESTINATION bin)
6 changes: 6 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <iostream>

int main(int argc, char **argv) {
std::cout << "Hello, world!" << std::endl;
return 0;
}
4 changes: 4 additions & 0 deletions neuralnet.kdev4
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[Project]
Name=neuralnet
Manager=KDevCMakeManager
VersionControl=kdevgit

0 comments on commit 6209004

Please sign in to comment.