2020-04-10 17:15:35 +02:00
|
|
|
cmake_minimum_required(VERSION 3.12)
|
2017-08-27 12:10:38 +02:00
|
|
|
# Set the name of your project here
|
|
|
|
project("external")
|
|
|
|
|
|
|
|
set(LIB_SOURCES
|
|
|
|
libGIS/atmel_generic.c
|
|
|
|
libGIS/ihex.c
|
|
|
|
libGIS/srecord.c
|
|
|
|
)
|
|
|
|
|
|
|
|
# Define the library
|
2022-11-05 20:56:15 +01:00
|
|
|
add_library(${PROJECT_NAME} ${LIB_SOURCES})
|
|
|
|
target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/libGIS)
|
2017-08-27 12:10:38 +02:00
|
|
|
|