Skip to content

Commit

Permalink
Fix meson.build considering directory rename
Browse files Browse the repository at this point in the history
  • Loading branch information
c committed Jun 6, 2024
1 parent 91820e3 commit 58cf7f5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CppSharp.CppParser/meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# meson configure -Dprefix=/home/c/dev/CppSharp -Dlibdir=bin/Debug/net8.0

project(
'CppSharp.CppParser.Native',
'CppSharp.CppParser',
'cpp',
version : '0.1',
default_options : [
Expand Down Expand Up @@ -188,6 +188,7 @@ shared_library('CppSharp.CppParser',
'Sources.cpp',
'Stmt.cpp',
'Target.cpp',
'../CppSharp.CppParser.Managed/linux-x64/CppSharp.CppParser-symbols.cpp',
],
cpp_args : [
# LLVM release builds with no typeinfo
Expand All @@ -211,6 +212,6 @@ shared_library('CppSharp.CppParser',

shared_library('Std-symbols',
[
'../CppSharp.CppParser/linux-x64/Std-symbols.cpp',
'../CppSharp.CppParser.Managed/linux-x64/Std-symbols.cpp',
],
install : true)

0 comments on commit 58cf7f5

Please sign in to comment.