initial project import from KDevelop
This commit is contained in:
commit
c800d41895
3 changed files with 15 additions and 0 deletions
5
CMakeLists.txt
Normal file
5
CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
project(cpplab)
|
||||
|
||||
add_executable(cpplab main.cpp)
|
||||
|
||||
install(TARGETS cpplab RUNTIME DESTINATION bin)
|
4
cpplab.kdev4
Normal file
4
cpplab.kdev4
Normal file
|
@ -0,0 +1,4 @@
|
|||
[Project]
|
||||
Name=cpplab
|
||||
Manager=KDevCMakeManager
|
||||
VersionControl=kdevgit
|
6
main.cpp
Normal file
6
main.cpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include <iostream>
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
std::cout << "Hello, world!" << std::endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue