1
0
mirror of https://gitlab.com/klmp200/fish.git synced 2024-09-21 02:18:07 +00:00
fish/CMakeLists.txt

8 lines
321 B
CMake
Raw Normal View History

2017-05-09 14:04:24 +00:00
cmake_minimum_required(VERSION 3.7)
project(fish)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_FLAGS "-Wall -Werror -pedantic -fpic -Wextra")
2017-05-09 14:04:24 +00:00
set(SOURCE_FILES main.c fish_shell/fish_core.c fish_shell/fish_core.h fish_shell/fish_commands.c fish_shell/fish_commands.h fish_shell/fish_types.h)
2017-05-09 14:04:24 +00:00
add_executable(fish ${SOURCE_FILES})