Cleaned up some formatting
parent
42690d1f9a
commit
65cd6ff8c8
|
|
@ -1,7 +1,7 @@
|
||||||
cmake_minimum_required(VERSION 3.2)
|
cmake_minimum_required(VERSION 3.2)
|
||||||
project(libicsneo VERSION 0.1.1)
|
project(libicsneo VERSION 0.1.1)
|
||||||
|
|
||||||
option(BUILD_TESTS "Build all tests." OFF) # Makes 'BUILD_TEST' variable available
|
option(BUILD_TESTS "Build all tests." OFF)
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 11)
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
|
|
||||||
|
|
@ -205,7 +205,7 @@ if(NOT WIN32)
|
||||||
target_link_libraries(icsneocpp PUBLIC ${PCAP_LIBRARY})
|
target_link_libraries(icsneocpp PUBLIC ${PCAP_LIBRARY})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# googletest, hopefully cross-platform and won't have to split into 2 places in CMakeLists
|
# googletest
|
||||||
if(BUILD_TESTS)
|
if(BUILD_TESTS)
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# libicsneo
|
# libicsneo
|
||||||
### The Intrepid Control Systems Open Cross-Platform Device Communication API
|
### The Intrepid Control Systems Open Source Cross-Platform Device Communication API
|
||||||
|
|
||||||
An open source solution to integrate Intrepid Control Systems vehicle networking hardware with your application.
|
An open source solution to integrate Intrepid Control Systems vehicle networking hardware with your application.
|
||||||
|
|
||||||
|
|
@ -120,6 +120,7 @@ The dependencies are as follows
|
||||||
- CMake 3.2 or above
|
- CMake 3.2 or above
|
||||||
- GCC 4.7 or above, 4.8+ recommended
|
- GCC 4.7 or above, 4.8+ recommended
|
||||||
- `libusb-1.0-0-dev`
|
- `libusb-1.0-0-dev`
|
||||||
|
- `libpcap0.8-dev`
|
||||||
- `build-essential` is recommended
|
- `build-essential` is recommended
|
||||||
|
|
||||||
If you'd like to be able to run programs that use this library without being root, consider using the included udev rules
|
If you'd like to be able to run programs that use this library without being root, consider using the included udev rules
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue