Skip to content

Commit

Permalink
pugixml provided by system is now fine
Browse files Browse the repository at this point in the history
  • Loading branch information
checkroom committed Dec 11, 2024
1 parent 3ea40e7 commit 7ae231c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ project(
'vs-templ',
['cpp'],
version: '0.3.4',
meson_version: '>= 1.1',
default_options: ['cpp_std=c++20'],
)

pugixml_proj = subproject('pugixml')
pugixml_dep = pugixml_proj.get_variable('pugixml_dep')
pugixml_dep = dependency('pugixml', version : '>=1.14.0')
if pugixml_dep.found() == false
pugixml_proj = subproject('pugixml')
pugixml_dep = pugixml_proj.get_variable('pugixml_dep')
endif

vs_templ_lib = library(
'vs-templ-lib',
Expand Down

0 comments on commit 7ae231c

Please sign in to comment.