mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 12:53:20 +00:00
60 lines
1.6 KiB
CMake
60 lines
1.6 KiB
CMake
cmake_minimum_required(VERSION 3.7)
|
|
project(fish_shell)
|
|
|
|
# We need thread support
|
|
find_package(Threads REQUIRED)
|
|
|
|
# Enable ExternalProject CMake module
|
|
include(ExternalProject)
|
|
|
|
# Download and install GoogleTest
|
|
ExternalProject_Add(
|
|
gtest
|
|
URL https://github.com/google/googletest/archive/master.zip
|
|
PREFIX ${CMAKE_CURRENT_BINARY_DIR}/gtest
|
|
# Disable install step
|
|
INSTALL_COMMAND ""
|
|
)
|
|
|
|
# Get GTest source and binary directories from CMake project
|
|
ExternalProject_Get_Property(gtest source_dir binary_dir)
|
|
|
|
# Create a libgtest target to be used as a dependency by test programs
|
|
add_library(libgtest IMPORTED STATIC GLOBAL)
|
|
add_dependencies(libgtest gtest)
|
|
|
|
# Set libgtest properties
|
|
set_target_properties(libgtest PROPERTIES
|
|
"IMPORTED_LOCATION" "${binary_dir}/googlemock/gtest/libgtest.a"
|
|
"IMPORTED_LINK_INTERFACE_LIBRARIES" "${CMAKE_THREAD_LIBS_INIT}"
|
|
)
|
|
|
|
# Create a libgmock target to be used as a dependency by test programs
|
|
add_library(libgmock IMPORTED STATIC GLOBAL)
|
|
add_dependencies(libgmock gtest)
|
|
|
|
# Set libgmock properties
|
|
set_target_properties(libgmock PROPERTIES
|
|
"IMPORTED_LOCATION" "${binary_dir}/googlemock/libgmock.a"
|
|
"IMPORTED_LINK_INTERFACE_LIBRARIES" "${CMAKE_THREAD_LIBS_INIT}"
|
|
)
|
|
|
|
include_directories(
|
|
"${source_dir}/googletest/include"
|
|
"${source_dir}/googlemock/include"
|
|
)
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
set(CMAKE_C_FLAGS "-Wall -Werror -pedantic -fpic -Wextra -Wshadow")
|
|
|
|
add_subdirectory(fish_shell)
|
|
|
|
add_subdirectory(fish_shell_tests)
|
|
|
|
|
|
enable_testing()
|
|
|
|
add_test(NAME fish_tests
|
|
COMMAND fish_tests
|
|
)
|