From 240c0c4b7411b9cf8f05a49103f725b3b3b09e25 Mon Sep 17 00:00:00 2001 From: Robin David Date: Fri, 14 Feb 2025 00:27:47 +0100 Subject: [PATCH] remove Ida_BIN_DIR which have disappeared, and --target also --- docs/README.md | 5 ++--- docs/dev.md | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/README.md b/docs/README.md index 66daabc9..951f1027 100644 --- a/docs/README.md +++ b/docs/README.md @@ -75,11 +75,10 @@ ls = quokka.Program("ls.quokka", # the exported file user@host:~/quokka$ cmake -B build \ # Where to build -S . \ # Where are the sources -DIdaSdk_ROOT_DIR:STRING=path/to/ida_sdk \ # Path to IDA SDK - -DIda_BIN_DIR:STRING=/path/to/ida/dir \ # Path to IDA -DCMAKE_BUILD_TYPE:STRING=Release \ # Build Type -DBUILD_TEST:BOOL=OFF # Don't build the tests -user@host:~/quokka$ cmake --build build --target quokka_plugin -- -j +user@host:~/quokka$ cmake --build build -- -j 8 ``` To install the plugin: @@ -95,4 +94,4 @@ copy it to Ida plugin directory. user@host:~/quokka$ cp build/quokka-install/quokka*64.so $IDA_BIN_DIR/plugins/ ``` -For more detailed information about building, see [Building](installation.md#ida-plugin) \ No newline at end of file +For more detailed information about building, see [Building](installation.md#ida-plugin) diff --git a/docs/dev.md b/docs/dev.md index 3388de62..db21a0e2 100644 --- a/docs/dev.md +++ b/docs/dev.md @@ -45,7 +45,6 @@ To compile tests: user@host:~/quokka$ cmake -B build-tests \ # Where to build -S . \ # Where are the sources -DIdaSdk_ROOT_DIR:STRING=path/to/ida_sdk \ # Path to IDA SDK - -DIda_BIN_DIR:STRING=/path/to/ida/dir \ # Path to IDA -DCMAKE_BUILD_TYPE:STRING=Debug \ # Build Type -DBUILD_TEST:BOOL=On ```