Skip to content

Commit d6bd4c4

Browse files
committed
Re-add "install" feature
1 parent cbe2418 commit d6bd4c4

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
karrowswitch
22
Makefile
3+
CMakeFiles
34
cmake-build-debug
45
cmake-build-release
56
CMakeCache.txt
67
.directory
8+
install_manifest.txt
79
*.cmake
810
*.cbp
911
.idea

CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ project(karrowswitch)
44
set(CMAKE_CXX_STANDARD 17)
55

66
add_executable(karrowswitch karrowswitch.cpp)
7-
target_link_libraries(karrowswitch -lXtst -lX11 -pthread)
7+
target_link_libraries(karrowswitch -lXtst -lX11 -pthread)
8+
install(TARGETS karrowswitch DESTINATION /usr/bin/)

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ Below are some generic instructions for how to compile karrowswitch from source.
3333
```
3434
$ git clone https://github.com/nimatrueway/karrowswitch.git
3535
$ cd karrowswitch
36-
$ cmake
36+
$ cmake .
37+
$ make
3738
```
3839
3940
Usage

0 commit comments

Comments
 (0)