-
Notifications
You must be signed in to change notification settings - Fork 16
/
CMakeLists.txt
34 lines (32 loc) · 971 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# qLibs CMakeLists.txt file
# Copyright (C) 2012 Eng. Juan Camilo Gómez Cadavid MSc. All Rights Reserved.
#
# To make use of the qLibs libraries on your solution just add the following
# directives to the top-level CMakeLists.txt file :
#
# add_subdirectory( <relative/path/to/qlibs> )
# target_link_libraries( ${PROJECT_NAME} qlibs )
#
# This file is part of the qLibs distribution.
cmake_minimum_required( VERSION 3.2 )
project( qlibs
VERSION 1.2.8
DESCRIPTION "A collection of useful libraries for embedded systems"
LANGUAGES C
)
add_library( ${PROJECT_NAME}
qbitfield.c
qcrc.c
qffmath.c
qfis.c
qfp16.c
qltisys.c
qnuma.c
qpid.c
qrms.c
qssmoother.c
qtdl.c
qtypegeneric.c
qvfloat.c
)
target_include_directories( ${PROJECT_NAME} PUBLIC include )