mirror of
https://github.com/ConsistentlyInconsistentYT/Pixeltovoxelprojector.git
synced 2025-10-13 04:12:07 +00:00
The content is replicating the build rules in examplebuildvoxelgridfrommotion.bat, adding compiler warnings.
14 lines
250 B
Makefile
14 lines
250 B
Makefile
CPPFLAGS =
|
|
CFLAGS = -Wall -W -std=c++17 -O2
|
|
LDFLAGS =
|
|
|
|
all: ray_voxel
|
|
|
|
example: ray_voxel
|
|
ray_voxel motionimages/metadata.json motionimages voxel_grid.bin
|
|
|
|
ray_voxel:
|
|
$(CXX) $(CPPFLAGS) $(CFLAGS) ray_voxel.cpp -o ray_voxel
|
|
|
|
clean:
|
|
$(RM) ray_voxel
|