Repo for the lexy-vdf, a VDF parser implemented using lexy
See main.cpp
- Install scons for your system.
- Run the command
git submodule update --init --recursive
to retrieve all related submodules. - Run
scons build_lvdf_library=yes
in the project root, you should see a liblexy-vdf file inbin
.
- Call
lvdf_env = SConscript("lexy-vdf/SConstruct")
- Use the values stored in the
lvdf_env.lexy_vdf
to link and compile against:
Variable Name | Description | Correlated ENV variable |
---|---|---|
LIBPATH |
Library path list | env["LIBPATH"] |
LIBS |
Library files names in the library paths | env["LIBS"] |
INCPATH |
Library include files | env["CPPPATH"] |