-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bgfirmware utility works, without encryption.
- Loading branch information
1 parent
84622d3
commit 3c873ad
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
cmake_minimum_required(VERSION 3.6) | ||
project(utils) | ||
|
||
set(CMAKE_CXX_STANDARD 11) | ||
|
||
set(SOURCE_FILES | ||
firmware.c | ||
vector.c | ||
vector.h) | ||
|
||
find_library(uuid /usr/local/lib) | ||
find_path(UUID_INCLUDE_DIR uuid/uuid.h | ||
/usr/local/include | ||
/opt/local/include | ||
/usr/include | ||
) | ||
include_directories(${UUID_INCLUDE_DIR}) | ||
|
||
|
||
add_executable(bgfirmware ${SOURCE_FILES}) |