You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bat/tests/syntax-tests/highlighted/nim/test.nimble

24 lines
1.8 KiB
Nim

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

version = "0.1.0"
author = "creator_name"
description = "Tests nimble syntax highlighting"
license = "custom"
bin = @["test"]
srcdir = "src"
installExt = @["nim"]
# Dependencies
requires "nim >= 1.6.2"
when defined(nimdistros):
 import distros
 if detectOs(Ubuntu):
 foreignDep "external_lib"
 else:
 foreignDep "other_lib"
task test, "Runs a task called 'test'":
 withDir "tests":
 exec "nim c -r tester"