Closed Marsman1996 closed 2 years ago
According to the Installation guide in document, there should be a CMakeFile.txt in core/.
CMakeFile.txt
core/
However there is none.
❯ git clone git@github.com:hgarrereyn/GraphFuzz.git Cloning into 'GraphFuzz'... remote: Enumerating objects: 349, done. remote: Counting objects: 100% (349/349), done. remote: Compressing objects: 100% (246/246), done. remote: Total 349 (delta 94), reused 349 (delta 94), pack-reused 0 Receiving objects: 100% (349/349), 3.87 MiB | 2.41 MiB/s, done. Resolving deltas: 100% (94/94), done. ❯ cd GraphFuzz/core ❯ mkdir build ❯ cd build ❯ cmake ../ CMake Error: The source directory "/home/ubuntu178/cvelibf/GraphFuzz/core" does not appear to contain CMakeLists.txt. Specify --help for usage, or press the help button on the CMake GUI. ❯ ls ../ build build_tests.sh graph.hpp graph.proto graphTest.cpp harness.cpp ignorelist.txt json.hpp schema.hpp schemaTest.cpp
Good catch! The CMakeLists.txt is in the root directory. I've updated the docs to reflect this.
According to the Installation guide in document, there should be a
CMakeFile.txt
incore/
.However there is none.