Initial commit

This commit is contained in:
2017-08-27 12:10:38 +02:00
commit 4ee7118b70
41 changed files with 10842 additions and 0 deletions

31
external/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,31 @@
cmake_minimum_required(VERSION 2.8)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/../cmake)
set(CMAKE_CXX_STANDARD 14)
# Set the name of your project here
project("external")
include(Common)
include_directories( ${PROJECT_SOURCE_DIR}/external/libGIS ${PROJECT_SOURCE_DIR}/external/easyloggingpp/src )
FILE(GLOB ElfioHeaders elfio *.hpp)
FILE(GLOB GISHeaders libGis *.h)
FILE(GLOB LogHeaders easyloggingpp/src *.h)
set(LIB_HEADERS ${ElfioHeaders} ${GISHeaders} ${LogHeaders})
set(LIB_SOURCES
libGIS/atmel_generic.c
libGIS/ihex.c
libGIS/srecord.c
easyloggingpp/src/easylogging++.cc
)
# Define two variables in order not to repeat ourselves.
set(LIBRARY_NAME external)
# Define the library
add_library(${LIBRARY_NAME} ${LIB_SOURCES})

1
external/easyloggingpp vendored Submodule

Submodule external/easyloggingpp added at 850ea2a9f1

1
external/elfio vendored Submodule

Submodule external/elfio added at fbf8eafc2d

1
external/libGIS vendored Submodule

Submodule external/libGIS added at f82b9dd301