mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 13:08:49 +00:00
Define fish_indent and fish_key_reader in CMake
This adds CMake targets for fish_indent and fish_key_reader.
This commit is contained in:
parent
af6bbbf83e
commit
6ff0f86606
1 changed files with 10 additions and 0 deletions
|
@ -69,5 +69,15 @@ ENDFUNCTION(FISH_LINK_DEPS)
|
|||
ADD_EXECUTABLE(fish src/fish.cpp ${FISH_SRCS})
|
||||
FISH_LINK_DEPS(fish)
|
||||
|
||||
# Define fish_indent.
|
||||
ADD_EXECUTABLE(fish_indent
|
||||
src/fish_indent.cpp src/print_help.cpp ${FISH_SRCS})
|
||||
FISH_LINK_DEPS(fish_indent)
|
||||
|
||||
# Define fish_key_reader.
|
||||
ADD_EXECUTABLE(fish_key_reader
|
||||
src/fish_key_reader.cpp src/print_help.cpp ${FISH_SRCS})
|
||||
FISH_LINK_DEPS(fish_key_reader)
|
||||
|
||||
# Set up tests.
|
||||
INCLUDE(CMakeFiles/Tests.cmake)
|
||||
|
|
Loading…
Reference in a new issue