Skip to content

Commit 9ec9964

Browse files
committed
minor mods
1 parent b583719 commit 9ec9964

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

prep-cmake.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ if not exist %IDASDK%\ida-cmake\common.cmake (
2222
)
2323

2424
if "%1"=="clean" (
25-
if exist build64 rmdir /s /q build64
25+
if exist build rmdir /s /q build
2626
goto :eof
2727
)
2828

29-
if not exist build64 cmake -B build64 -S . -A x64 -DEA64=YES
29+
if not exist build cmake -B build -S . -A x64 -DEA64=YES
3030

31-
if "%1"=="build" cmake --build build64 --config Release
31+
if "%1"=="build" cmake --build build --config Release
3232

3333
echo.
3434
echo All done!

test_scripts/trigger-native/plugin_triton/qscripts_native_triton.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import time
2+
import idaapi
23

34
# Give the linker time to finish flushing the binary
45
time.sleep(1)

test_scripts/trigger-native/qscripts_native.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import time
2+
import idaapi
23

34
# Give the linker time to finish flushing the binary
45
time.sleep(1)

0 commit comments

Comments
 (0)