Skip to content

Commit d4f0c7a

Browse files
committed
Move Fine to a dependency
1 parent 45b584b commit d4f0c7a

File tree

8 files changed

+34
-1519
lines changed

8 files changed

+34
-1519
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ NIF_PATH = $(PRIV_DIR)/libpythonx.so
33

44
C_SRC = $(shell pwd)/c_src/pythonx
55
CPPFLAGS = -shared -fPIC -std=c++17 -Wall -Wextra -Wno-unused-parameter -Wno-comment
6-
CPPFLAGS += -I$(ERTS_INCLUDE_DIR)
6+
CPPFLAGS += -I$(ERTS_INCLUDE_DIR) -I$(FINE_INCLUDE_DIR)
77

88
ifdef DEBUG
99
CPPFLAGS += -g

Makefile.win

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ NIF_PATH=$(PRIV_DIR)\libpythonx.dll
33

44
C_SRC=$(MAKEDIR)\c_src\pythonx
55
CPPFLAGS=/LD /std:c++17 /W4 /wd4100 /wd4458 /O2 /EHsc
6-
CPPFLAGS=$(CPPFLAGS) /I"$(ERTS_INCLUDE_DIR)"
6+
CPPFLAGS=$(CPPFLAGS) /I"$(ERTS_INCLUDE_DIR)" /I"$(FINE_INCLUDE_DIR)"
77

88
SOURCES=$(C_SRC)\*.cpp
99
HEADERS=$(C_SRC)\*.hpp

0 commit comments

Comments
 (0)