Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RSDK-4039] fix-makefile-not-rebuilding #205

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,13 @@ else
$(error "Unsupported system. Only apt and brew currently supported.")
endif

build: bin/cartographer-module
build: cartographer-module

viam-cartographer/build/carto_grpc_server: ensure-submodule-initialized grpc/buf
cd viam-cartographer && cmake -Bbuild -G Ninja ${EXTRA_CMAKE_FLAGS} && cmake --build build

bin/cartographer-module: viam-cartographer/build/carto_grpc_server
cartographer-module: viam-cartographer/build/carto_grpc_server
rm -f bin/cartographer-module
mkdir -p bin && go build $(GO_BUILD_LDFLAGS) -o bin/cartographer-module module/main.go

# Ideally build-asan would be added to build-debug, but can't yet
Expand Down
Loading