Current section
Files
Jump to
Current section
Files
dll_loader_helper
Makefile.win
Makefile.win
all: nif_dll
build: nif_dll
nif_dll:
@ if not exist "build" mkdir "build"
@ cd build && cmake -G "NMake Makefiles" \
-DCMAKE_BUILD_TYPE="Release" \
-DMIX_APP_PATH="$(MIX_APP_PATH)" \
-DERTS_INCLUDE_DIR="$(ERTS_INCLUDE_DIR)" .. && \
cmake --build . --config Release && \
cmake --install . --config Release && cd ..
.PHONY: all