mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
add TBD for dotnet example
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
eb682c3e39
commit
225fb82d96
|
@ -2357,7 +2357,7 @@ class DotNetExampleComponent(ExampleComponent):
|
|||
ExampleComponent.__init__(self, name, path)
|
||||
|
||||
def is_example(self):
|
||||
return is_dotnet_enabled()
|
||||
return is_dotnet_enabled() or is_dotnet_core_enabled()
|
||||
|
||||
def mk_makefile(self, out):
|
||||
if is_dotnet_enabled():
|
||||
|
@ -2385,6 +2385,8 @@ class DotNetExampleComponent(ExampleComponent):
|
|||
out.write(os.path.join(relative_path, csfile))
|
||||
out.write('\n')
|
||||
out.write('_ex_%s: %s\n\n' % (self.name, exefile))
|
||||
if is_dotnet_core_enabled():
|
||||
print("TBD: build script for dotnet_example on core")
|
||||
|
||||
class JavaExampleComponent(ExampleComponent):
|
||||
def __init__(self, name, path):
|
||||
|
|
Loading…
Reference in a new issue