mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
All C++ projects now build without warnings with -Wall and -Wextra Change-Id: Idb6cf8b78274a30453e98c1e8edabcfb2a7fffb6
13 lines
481 B
CMake
13 lines
481 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
project(All-WPILib)
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wformat=2 -Wall -Wextra -Wno-unused-parameter -fPIC")
|
|
SET(CMAKE_SKIP_BUILD_RPATH TRUE)
|
|
|
|
file(GLOB_RECURSE NI_LIBS ni-libraries/*.so*)
|
|
get_filename_component(HAL_API_INCLUDES hal/include REALPATH)
|
|
get_filename_component(NWT_API_INCLUDES networktables/cpp/include REALPATH)
|
|
add_subdirectory(hal)
|
|
add_subdirectory(networktables/cpp)
|
|
add_subdirectory(wpilibc)
|