Skip to content

Commit

Permalink
Make a few fixes to release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
yamadapc committed Feb 8, 2024
1 parent 44c02aa commit cf94cf7
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ cmake-build-debug-with-coverage
FileSaver/FileSaver.xcodeproj/project.xcworkspace/xcuserdata
filesaver_test.log
/cmake-build-debug-with-coverage
/.vscode
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

#include "../../../services/WorkerManagerService.h"
#include "FileSaver.h"
#include "utils/Utils.h"


@implementation DirectoryTableViewController {
NSTimer* timer;
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion FileSaver/conan.prof
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ os_build=Macos
arch=armv8
arch_build=armv8
compiler=apple-clang
compiler.version=14.0
compiler.version=15.0
compiler.libcxx=libc++
compiler.cppstd=17
build_type=Release
Expand Down
2 changes: 1 addition & 1 deletion FileSaver/conan_x86.prof
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ os_build=Macos
arch=x86_64
arch_build=x86_64
compiler=apple-clang
compiler.version=14.0
compiler.version=15.0
compiler.libcxx=libc++
compiler.cppstd=17
build_type=Release
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ debug-build-and-test: FORCE

debug-build: FORCE
mkdir -p build/debug
cd build/debug && cmake -DENABLE_CPPCHECK=ON -DENABLE_CLANG_TIDY=ON ../..
# cd build/debug && cmake -DENABLE_CPPCHECK=ON -DENABLE_CLANG_TIDY=ON ../..
cd build/debug && cmake ../..
cd build/debug && make -j

release-build-and-test: FORCE
Expand All @@ -28,7 +29,7 @@ fix-xcconfig: FORCE

build-gui-release: FORCE
make FileSaver/fat_conan.xcconfig
cd FileSaver && xcodebuild -project ./FileSaver.xcodeproj -scheme FileSaver -configuration Release
cd FileSaver && xcodebuild -project ./Parallel\ Disk\ Scanner.xcodeproj -scheme FileSaver -configuration Release

# Requires github-release https://github.com/github-release/github-release
app-release: FORCE
Expand Down
2 changes: 1 addition & 1 deletion cmake/Conan.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ set(CONAN_EXTRA_OPTIONS

conan_cmake_run(
ARCH
${CONAN_ARCH}
"${CONAN_ARCH}"
REQUIRES
${CONAN_REQUIRES}
OPTIONS
Expand Down

0 comments on commit cf94cf7

Please sign in to comment.