From 3780aa6b66df2dcff007231ecf3d2fc478d71612 Mon Sep 17 00:00:00 2001 From: talksik Date: Wed, 14 Jan 2026 17:10:16 -0800 Subject: [PATCH] build: fix running from terminal with console debug --- CMakeLists.txt | 4 ++-- run.ps1 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6fb3512..82cf415 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ set_target_properties(llink PROPERTIES MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} MACOSX_BUNDLE TRUE - WIN32_EXECUTABLE TRUE + WIN32_EXECUTABLE $> ) target_link_libraries(llink @@ -60,4 +60,4 @@ qt_generate_deploy_app_script( OUTPUT_SCRIPT deploy_script NO_UNSUPPORTED_PLATFORM_ERROR ) -install(SCRIPT ${deploy_script}) \ No newline at end of file +install(SCRIPT ${deploy_script}) diff --git a/run.ps1 b/run.ps1 index ddae075..5de2dbf 100644 --- a/run.ps1 +++ b/run.ps1 @@ -18,5 +18,5 @@ cmake --build $BuildDir --config $Config $env:Path += ";C:\Users\arjun\Qt\6.8.6\msvc2022_64\bin" Write-Host "Build Complete!" -ForegroundColor Green -Start-Process "$BuildDir\appllink.exe" -WorkingDirectory $BuildDir +Start-Process "$BuildDir\llink.exe" -WorkingDirectory $BuildDir