Skip to content

Commit ed638db

Browse files
committed
Initial import
0 parents  commit ed638db

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

CMakeLists.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
cmake_minimum_required(VERSION 3.0)
2+
3+
project(fcitx5-tmux)
4+
5+
add_executable(fcitx5-tmux main.cpp)
6+
7+
install(TARGETS fcitx5-tmux RUNTIME DESTINATION bin)

fcitx5-tmux.kdev4

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[Project]
2+
Name=fcitx5-tmux
3+
Manager=KDevCMakeManager

main.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include <iostream>
2+
3+
int main(int argc, char **argv) {
4+
std::cout << "Hello, world!" << std::endl;
5+
return 0;
6+
}

0 commit comments

Comments
 (0)