Fix CMakeLists.txt license filename reference

## Problem
The HotPocket build fails during the POST_BUILD step with:
cp: cannot stat './evernode-license.pdf': No such file or directory

## Root Cause
CMakeLists.txt references `./evernode-license.pdf` but the actual file in the repository is named `"Evernode Software License Agreement 2.0.pdf"`.

## Solution
Update the copy command in CMakeLists.txt to reference the correct filename.

A recent name change requires changes to CMakeLists.txt also.
This commit is contained in:
onledger.net
2025-07-04 14:20:49 +12:00
committed by GitHub
parent 1117dda575
commit d7b9f3bd64

View File

@@ -77,7 +77,7 @@ target_link_libraries(hpcore
add_custom_command(TARGET hpcore POST_BUILD
# COMMAND strip ./build/hpcore
COMMAND cp ./test/bin/hpws ./test/bin/hpfs ./evernode-license.pdf ./build/
COMMAND cp ./test/bin/hpws ./test/bin/hpfs "./Evernode Software License Agreement 2.0.pdf" ./build/
)
target_precompile_headers(hpcore PUBLIC src/pchheader.hpp)