-
Notifications
You must be signed in to change notification settings - Fork 0
/
fpm.toml
40 lines (33 loc) · 1.15 KB
/
fpm.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name = "Formine"
description = "A voxel game written in Fortran."
version = "0.6.1"
license = "MPL-2.0"
author = "jordan4ibanez"
maintainer = "jordan4ibanez"
copyright = "Copyright 2024, jordan4ibanez"
categories = ["game", "engine", "glfw", "opengl", "stb"]
[build]
auto-executables = true
auto-tests = true
auto-examples = true
module-naming = false
# Windows needs different linking flags.
# STB becomes a blank export of a C file in the graphics folder.
# link = ["glfw3", "opengl32", "luajit-5.1"]
# MacOS needs different link flags.
# link = ["glfw", "luajit-5.1"]
# Everything else (for now)
link = ["glfw", "luajit-5.1"]
[dependencies]
forthread = { git = "https://github.com/jordan4ibanez/forthread" }
uuid_now = { git = "https://github.com/jordan4ibanez/uuid_now" }
hashmap_f90 = { git = "https://github.com/jordan4ibanez/hashmap_f90" }
fortran_vector = { git = "https://github.com/jordan4ibanez/fortran_vector" }
files_f90 = { git = "https://github.com/jordan4ibanez/files_f90" }
string_f90 = { git = "https://github.com/jordan4ibanez/string_f90" }
[install]
library = true
[fortran]
implicit-typing = false
implicit-external = false
source-form = "free"