summaryrefslogtreecommitdiff
path: root/xmake/templates/fortran/static/xmake.lua
blob: 4b91ad2075cd438888486ff0de1655fdccc9e526 (plain)
1
2
3
4
5
6
7
8
9
10
11
add_rules("mode.debug", "mode.release")

target("${TARGET_NAME}_lib")
    set_kind("static")
    add_files("src/test.f90")

target("${TARGET_NAME}")
    set_kind("binary")
    add_deps("${TARGET_NAME}_lib")
    add_files("src/main.f90")