I'm attempting to follow the Linux directions below in the README.md file:
Linux Build with CMake
(TOOLCHAIN=GCC|CLANG)
cd spdm_emu
mkdir build
cd build
cmake -DARCH=<x64|ia32|arm|aarch64|riscv32|riscv64|arc> -DTOOLCHAIN=<toolchain> -DTARGET=<Debug|Release> -DCRYPTO=<mbedtls|openssl> ..
make copy_sample_key
make
However, I'm seeing this issue:
usr> cd spdm_emu && rm -rf build && mkdir build && cd build && cmake -DCMAKE_C_COMPILER=<compiler-path-omitted> -DARCH=x64 -DTOOLCHAIN=GCC -DTARGET=Debug -DCRYPTO=openssl .. && make copy_sample_key && make
CMake Error: The source directory "//spdm-emu/spdm_emu" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.
It looks like there's not a CMakeLists.txt file that can be used in the way specified. Am I doing something wrong?
I'm attempting to follow the Linux directions below in the README.md file:
Linux Build with CMake
(TOOLCHAIN=GCC|CLANG)
However, I'm seeing this issue:
usr> cd spdm_emu && rm -rf build && mkdir build && cd build && cmake -DCMAKE_C_COMPILER=<compiler-path-omitted> -DARCH=x64 -DTOOLCHAIN=GCC -DTARGET=Debug -DCRYPTO=openssl .. && make copy_sample_key && make
CMake Error: The source directory "//spdm-emu/spdm_emu" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.
It looks like there's not a CMakeLists.txt file that can be used in the way specified. Am I doing something wrong?