1
0
mirror of https://gitlab.com/klmp200/fish.git synced 2024-06-13 10:12:03 +00:00
fish/fish_shell/CMakeLists.txt

8 lines
339 B
CMake
Raw Normal View History

2017-05-15 22:08:07 +00:00
cmake_minimum_required(VERSION 3.7)
project(fish_shell)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_FLAGS "-Wall -Werror -pedantic -fpic -Wextra -Wshadow")
2017-05-16 00:58:16 +00:00
set(SOURCE_FILES main.c fish_types.h fish_core.h fish_core.c fish_commands.c fish_commands.h fish_globbing.c fish_globbing.h fish_utils.c fish_utils.h)
2017-05-15 23:33:36 +00:00
add_executable(fish ${SOURCE_FILES})