Skip to content

Commit

Permalink
Merge pull request #92 from userver-framework/feature/configure-no-cmake
Browse files Browse the repository at this point in the history
bug Makefile: fix extra cmake run in tests
  • Loading branch information
segoon authored Feb 5, 2025
2 parents d1f946d + 0b59f47 commit 99f3234
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ all: test-debug test-release
$(addprefix cmake-, $(PRESETS)): cmake-%:
cmake --preset $*

$(addsuffix /CMakeCache.txt, $(addprefix build-, $(PRESETS))): build-%/CMakeCache.txt: cmake-%
$(addsuffix /CMakeCache.txt, $(addprefix build-, $(PRESETS))): build-%/CMakeCache.txt:
$(MAKE) cmake-$*

# Build using cmake
.PHONY: $(addprefix build-, $(PRESETS))
Expand Down

0 comments on commit 99f3234

Please sign in to comment.