🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
407 B

  1. #CXX ?= clang++
  2. #CXXFLAGS ?= -fsanitize=address -Werror -Wall -Wextra -g -O0 -DTINYEXR_USE_MINIZ=0 -DTINYEXR_USE_PIZ=0
  3. #LDFLAGS ?= -lz
  4. CXX=g++
  5. # -municode is not yet implemented
  6. CXXFLAGS=-DUNICODE -D_UNICODE -mwindows
  7. all:
  8. $(CC) $(CFLAGS) -I./deps/miniz ./deps/miniz.c
  9. $(CXX) $(CXXFLAGS) -I./deps/miniz -o test_tinyexr test_tinyexr.cc miniz.o $(LDFLAGS)
  10. test:
  11. ./test_tinyexr asakusa.exr
  12. .PHONY: test