Skip to content

Commit

Permalink
Install debug and release build
Browse files Browse the repository at this point in the history
  • Loading branch information
justinshannon committed Sep 2, 2023
1 parent b78226d commit e007460
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 5 additions & 1 deletion build_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ echo "Configuring Qt build..."

# Build Qt
echo "Building Qt..."
cmake --build . && cmake --install .
cmake --build .

echo "Installing Qt..."
cmake --install . --config Debug
cmake --install . --config Release

# Add files to 7z archive
cd install && 7z a linux *
6 changes: 5 additions & 1 deletion build_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ echo "Configuring Qt build..."

# Build Qt
echo "Building Qt..."
cmake --build . && cmake --install .
cmake --build .

echo "Installing Qt..."
cmake --install . --config Debug
cmake --install . --config Release

# Add files to 7z archive
cd install && 7z a macos *
3 changes: 2 additions & 1 deletion build_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ Write-Output "Build Qt..."
cmake --build . --parallel

Write-Output "Install Qt..."
cmake --install .
cmake --install . --config Debug
cmake --install . --config Release

Write-Output "Add files to 7z archive..."
Set-Location install
Expand Down

0 comments on commit e007460

Please sign in to comment.