This repository was archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
59 lines (52 loc) · 1.3 KB
/
CMakeLists.txt
File metadata and controls
59 lines (52 loc) · 1.3 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
cmake_minimum_required(VERSION 3.15)
project(libhal-lpc40 LANGUAGES CXX)
libhal_test_and_make_library(
LIBRARY_NAME libhal-lpc40
SOURCES
src/power.cpp
src/clock.cpp
src/can.cpp
src/pin.cpp
src/pwm.cpp
src/input_pin.cpp
src/output_pin.cpp
src/i2c.cpp
src/uart.cpp
src/interrupt_pin.cpp
src/adc.cpp
src/spi.cpp
TEST_SOURCES
tests/adc.test.cpp
tests/input_pin.test.cpp
tests/output_pin.test.cpp
tests/interrupt_pin.test.cpp
tests/can.test.cpp
tests/uart.test.cpp
tests/i2c.test.cpp
tests/pwm.test.cpp
tests/spi.test.cpp
tests/main.test.cpp
PACKAGES
libhal
libhal-util
libhal-armcortex
ring-span-lite
LINK_LIBRARIES
libhal::libhal
libhal::util
libhal::armcortex
nonstd::ring-span-lite
)