From 2ea27e0cdac91cd4743d9f12496bb3f911d9efa9 Mon Sep 17 00:00:00 2001 From: JF Date: Sun, 17 Nov 2019 20:47:04 +0100 Subject: Initial commit --- CMakeLists.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..9e1d1a79 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 3.15) +project(pinetime C CXX ASM) + +set(NRF_TARGET "nrf52") + +if (NOT ARM_NONE_EABI_TOOLCHAIN_PATH) + message(FATAL_ERROR "The path to the toolchain (arm-non-eabi) must be specified on the command line (add -DARM_NONE_EABI_TOOLCHAIN_PATH=") +endif () + +if (NOT NRF5_SDK_PATH) + message(FATAL_ERROR "The path to the NRF52 SDK must be specified on the command line (add -DNRF52_SDK_PATH=") +endif () + +if (NOT NRFJPROG) + message(FATAL_ERROR "the path to the tool nrfjprog must be specified on the command line (add -DNRFJPROG=") +endif () + +include("cmake-nRF5x/CMake_nRF5x.cmake") +add_subdirectory(src) -- cgit v1.2.3-70-g09d2