mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 03:29:43 +00:00
tomlplusplus: Allow using system library
This commit is contained in:
parent
9d2d8691b5
commit
482b2ea31d
@ -1 +1 @@
|
||||
Subproject commit 5da3fd2463288d9e048dbf3ea41f2bad0a4287a8
|
||||
Subproject commit 44bab849ce87fceafd74703bfcf2b61a1a1b738f
|
@ -838,9 +838,9 @@ if 'CONFIG_OPENGL' in config_host
|
||||
endif
|
||||
|
||||
tomllib = static_library('tomlpp', sources: files('toml.cpp'),
|
||||
include_directories: 'tomlplusplus')
|
||||
include_directories: 'tomlplusplus/include')
|
||||
toml = declare_dependency(compile_args: ['-DTOML_HEADER_ONLY=0'],
|
||||
include_directories: 'tomlplusplus',
|
||||
include_directories: 'tomlplusplus/include',
|
||||
link_with: tomllib)
|
||||
|
||||
genconfig = declare_dependency(include_directories: 'genconfig')
|
||||
|
2
toml.cpp
2
toml.cpp
@ -1,3 +1,3 @@
|
||||
#define TOML_HEADER_ONLY 0
|
||||
#define TOML_IMPLEMENTATION
|
||||
#include <toml.hpp>
|
||||
#include <toml++/toml.h>
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include <stdbool.h>
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <toml.hpp>
|
||||
#include <toml++/toml.h>
|
||||
#include <cnode.h>
|
||||
#include <sstream>
|
||||
#include <iostream>
|
||||
|
Loading…
Reference in New Issue
Block a user