first commit
This commit is contained in:
19
CMakeLists.txt
Normal file
19
CMakeLists.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
cmake_minimum_required(VERSION 3.11) # FetchContent
|
||||
|
||||
project(fifo_ipc)
|
||||
|
||||
if (NOT DEFINED OPTCON_LOCAL_BUILD)
|
||||
include(FetchContent)
|
||||
FetchContent_Declare(
|
||||
fmt
|
||||
GIT_REPOSITORY https://github.com/fmtlib/fmt
|
||||
GIT_TAG a33701196adfad74917046096bf5a2aa0ab0bb50 # 9.1.0
|
||||
)
|
||||
|
||||
FetchContent_MakeAvailable(fmt)
|
||||
endif()
|
||||
|
||||
add_compile_options(-Wall -Wextra -Wpedantic)
|
||||
|
||||
add_subdirectory(src)
|
||||
add_subdirectory(test)
|
||||
Reference in New Issue
Block a user