You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
308 B
15 lines
308 B
3 years ago
|
cmake_minimum_required(VERSION 3.10)
|
||
|
|
||
|
# set the project name
|
||
|
project(qbootctl)
|
||
|
|
||
|
set(BootCtrl_Files BootControl.cpp
|
||
|
boot_control_impl_qcom.cpp
|
||
|
gpt-utils.cpp)
|
||
|
|
||
|
include_directories(include)
|
||
|
|
||
|
# add the executable
|
||
|
add_executable(qbootctl ${BootCtrl_Files})
|
||
|
|
||
|
target_link_libraries(qbootctl libz.so)
|