2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2018-12-11 23:33:23 +08:00
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
2017-09-05 02:21:22 +08:00
|
|
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
2018-10-25 22:54:09 +08:00
|
|
|
project(x86_mmu_api)
|
2017-09-05 02:21:22 +08:00
|
|
|
|
|
|
|
file(GLOB source_for_app src/*.c)
|
|
|
|
|
|
|
|
target_sources(app PRIVATE ${source_for_app})
|