Skip to content

Commit

Permalink
remove Ida_BIN_DIR which have disappeared, and --target also
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinDavid committed Feb 13, 2025
1 parent 98a959d commit 240c0c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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)
For more detailed information about building, see [Building](installation.md#ida-plugin)
1 change: 0 additions & 1 deletion docs/dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit 240c0c4

Please sign in to comment.