Skip to content

Commit

Permalink
Merge pull request #12 from zgpio/runtime
Browse files Browse the repository at this point in the history
runtime
  • Loading branch information
zgpio committed Jul 23, 2020
2 parents f71bf3f + 707491f commit bf953d5
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ add_executable(tree
)

target_link_libraries(tree ${Boost_LIBRARIES})
install(DIRECTORY src/app/viml/ DESTINATION ${CMAKE_INSTALL_PREFIX})
install(DIRECTORY runtime/ DESTINATION ${CMAKE_INSTALL_PREFIX})
# install(TARGETS tree DESTINATION ${CMAKE_INSTALL_BINDIR})
install(TARGETS tree DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)

Expand Down
4 changes: 2 additions & 2 deletions NOTE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ sudo apt install libboost1.70-dev
# Test
```vim
" config.vim
set rtp+=~/project/nvim.cpp/src/app/viml
so ~/project/nvim.cpp/src/app/dev.vim
set rtp+=~/project/tree.nvim/runtime
so ~/project/tree.nvim/src/app/dev.vim
```
```sh
nvim -u config.vim --listen 127.0.0.1:6666
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- NeoVim line-based highlight (`conceal` free).
- High performance.
- Defx's UI/API (minor revision).
- For more information refer to [doc](src/app/viml/doc/tree.txt).
- For more information refer to [doc](runtime/doc/tree.txt).

## Usage
![Demo](https://user-images.githubusercontent.com/19503791/86912092-f3326f00-c14e-11ea-9d98-b65563c1bd6c.png)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ add_executable(tree-nvim WIN32 MACOSX_BUNDLE main.cpp

target_link_libraries(tree-nvim ${MSGPACK_LIBRARIES} tree-server)

install(DIRECTORY viml/ DESTINATION ${CMAKE_INSTALL_PREFIX})
install(DIRECTORY runtime/ DESTINATION ${CMAKE_INSTALL_PREFIX})
install(TARGETS tree-nvim DESTINATION ${CMAKE_INSTALL_BINDIR})

if(WIN32 AND NOT CMAKE_CROSSCOMPILING)
Expand Down

0 comments on commit bf953d5

Please sign in to comment.