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:
ridiculousfish 2017-09-08 15:19:07 -07:00
parent af6bbbf83e
commit 6ff0f86606

View file

@ -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)