ci: enable suprocess tests

This commit is contained in:
xoviat 2023-08-20 20:02:14 -05:00
parent f677f4411f
commit 0a28c8c6eb
2 changed files with 2 additions and 1 deletions

View File

@ -62,6 +62,7 @@ jobs:
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DSUBPROCESS_TESTS=ON
-S ${{ github.workspace }}
- name: Build

View File

@ -3,7 +3,7 @@ project(subprocess VERSION 0.0.1 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ standard to use")
option(EXPORT_COMPILE_COMMANDS "create clang compile database" ON)
option(SUBPROCESS_TESTS "enalbe subprocess tests" OFF)
option(SUBPROCESS_TESTS "enable subprocess tests" OFF)
find_package(Threads REQUIRED)