Skip to content

Commit

Permalink
fix: Correcting paths due to the new Zork++ standard way
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRustifyer committed May 27, 2024
1 parent f3373ff commit 372a271
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions zork_config/zork_gh_linux.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ output_dir = "./out"

[executable]
executable_name = "zero"
sources = [ "*.cpp" ]
sources = [ "zero/*.cpp" ]

[tests]
tests_executable_name = "zero_tests"
sources = [ "tests/**/*.cpp", "tests/math/*.cpp", "tests/*.cpp" ]

[modules]
base_ifcs_dir = "ifc"
base_ifcs_dir = "zero/ifc"
interfaces = [
{ file = 'commons/typedefs.cppm' },
{ file = 'commons/typedefs.cppm' },
{ file = 'text/str_manip.cppm' },
{ file = 'text/formatter.cppm' },
{ file = 'text/stylizer.cppm' },
Expand Down Expand Up @@ -76,7 +76,7 @@ interfaces = [
{ file = 'math/symbols.cppm', module_name = 'math.symbols' },
# Root
{ file = 'math/math.cppm' },

### The physics library
# The quantities library
{ file = 'physics/quantities/internal/quantities_detail.cpp', partition = { module = 'physics.quantities', partition_name = 'quantities.detail' } },
Expand Down

0 comments on commit 372a271

Please sign in to comment.