mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Add all of the most recent headers and .SOs Also make DriverStation work with the new FRC comm protocol, using the new functions for getting status data Change-Id: I1c7fc5f90e72c5fbebf87d9923ce0967ed0ef3bc Initial HAL support for v13 ds Change-Id: I9a7f37ef8e24241598fa3981cb3df30c07c52e0f New ds stuff in the HAL Change-Id: I025910625453baf63f79f49bbc70ba8b2f093f50 New ds stuff in C++ Joysticks are still todo Driver station IO is pulled out Change-Id: I1bb59037c097713bd943e7bef00e12f67f13c3ac New ds works in C++ and Java. Joysticks still todo Change-Id: Ic93f8686856761badc592eceaf05964f52355578 Make joysticks work again with the v13 image protocol Change-Id: Ief7ee95d3398c2262ca07ab7d60499af3c8f60f7
14 lines
566 B
CMake
14 lines
566 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
project(HAL)
|
|
|
|
file(GLOB_RECURSE SRC_FILES lib/Athena/*.cpp)
|
|
include_directories(lib/Athena lib/Athena/FRC_FPGA_ChipObject include)
|
|
add_library(HALAthena STATIC ${SRC_FILES})
|
|
target_link_libraries(HALAthena ${NI_LIBS})
|
|
INSTALL(TARGETS HALAthena ARCHIVE DESTINATION lib COMPONENT lib)
|
|
INSTALL(FILES ${NI_LIBS} DESTINATION lib COMPONENT ni_lib)
|
|
INSTALL(DIRECTORY include DESTINATION ${CMAKE_INSTALL_PREFIX} COMPONENT headers)
|
|
# lib/ c m gcc_s ld-linux
|
|
# usr/lib
|
|
# FRC_NetworkCommunication FRC_FPGA_ChipObject RoboRIO_FRC_ChipObject
|