diff options
author | whitequark <whitequark@whitequark.org> | 2019-09-26 02:11:22 +0000 |
---|---|---|
committer | whitequark <whitequark@whitequark.org> | 2019-09-30 15:53:11 +0000 |
commit | 8f2bdff7b9f948141dfb00a337f9c2acec6b118e (patch) | |
tree | ca049d84fb601021ea9daa6367bf1d4648e3b3ee /Makefile | |
parent | 143f82def2030527a4fa92b7ba60b704aad08e53 (diff) | |
download | yosys-8f2bdff7b9f948141dfb00a337f9c2acec6b118e.tar.gz yosys-8f2bdff7b9f948141dfb00a337f9c2acec6b118e.tar.bz2 yosys-8f2bdff7b9f948141dfb00a337f9c2acec6b118e.zip |
libs: import json11.
This commit imports the code from upstream commit
dropbox/json11@8ccf1f0c5ecab6151a65f216e7eeccd8588e5457.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -528,6 +528,7 @@ $(eval $(call add_include_file,kernel/satgen.h)) $(eval $(call add_include_file,libs/ezsat/ezsat.h)) $(eval $(call add_include_file,libs/ezsat/ezminisat.h)) $(eval $(call add_include_file,libs/sha1/sha1.h)) +$(eval $(call add_include_file,libs/json11/json11.hpp)) $(eval $(call add_include_file,passes/fsm/fsmdata.h)) $(eval $(call add_include_file,frontends/ast/ast.h)) $(eval $(call add_include_file,backends/ilang/ilang_backend.h)) @@ -545,6 +546,8 @@ OBJS += libs/sha1/sha1.o ifneq ($(SMALL),1) +OBJS += libs/json11/json11.o + OBJS += libs/subcircuit/subcircuit.o OBJS += libs/ezsat/ezsat.o |