diff options
author | John Ankarström <john@ankarstrom.se> | 2022-08-21 02:05:06 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-08-21 02:05:06 +0200 |
commit | 801c10f07d1c92e1b1b89d8a30cb0cf86745de31 (patch) | |
tree | e83811886dc14413330b1acf25f49c0ba7884609 /Makefile | |
parent | 07bde9f8575701bd0db60baf71aca2465361ff64 (diff) | |
download | EpisodeBrowser-801c10f07d1c92e1b1b89d8a30cb0cf86745de31.tar.gz |
Makefile: Include and link to libxml2.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -5,10 +5,11 @@ PL = pl/cfg.pl pl/episode_data.pl pl/local_episodes.pl pl/track_episodes.pl CL = swipl-ld CLFLAGS = -DUNICODE -D_UNICODE -CLFLAGS += -cc-options,-std=c++17 -O2 -CLFLAGS += -Wall -Wextra -Wpedantic -Wno-missing-field-initializers -Wno-parentheses -CLFLAGS += -ld-options,-mwindows,-static-libstdc++ -lcomctl32 -lwininet CLFLAGS += -DDEBUG +CLFLAGS += -cc-options,-std=c++17 -O0 +CLFLAGS += -ld-options,-mwindows,-static-libstdc++ -lcomctl32 -lwininet -llibxml2 +CLFLAGS += -IC:/msys64/mingw64/include/libxml2 +CLFLAGS += -Wall -Wextra -Wpedantic -Wno-missing-field-initializers -Wno-parentheses all: showdeps b/$(EXE) cp b/$(EXE) "C:\Users\John\Desktop\Delat" |