Skip to content

Commit

Permalink
minor mods
Browse files Browse the repository at this point in the history
  • Loading branch information
0xeb committed Feb 11, 2025
1 parent b583719 commit 9ec9964
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions prep-cmake.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ if not exist %IDASDK%\ida-cmake\common.cmake (
)

if "%1"=="clean" (
if exist build64 rmdir /s /q build64
if exist build rmdir /s /q build
goto :eof
)

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

if "%1"=="build" cmake --build build64 --config Release
if "%1"=="build" cmake --build build --config Release

echo.
echo All done!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import time
import idaapi

# Give the linker time to finish flushing the binary
time.sleep(1)
Expand Down
1 change: 1 addition & 0 deletions test_scripts/trigger-native/qscripts_native.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import time
import idaapi

# Give the linker time to finish flushing the binary
time.sleep(1)
Expand Down

0 comments on commit 9ec9964

Please sign in to comment.