Replies: 1 comment 4 replies
-
you can add |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,thank you very much for the great work. However, i get some problem and any suggestion is appreciated.
I am trying to build the openspiel library. The header files are at different folders, and the source files include the header files based on the relative path. for example, in an source file, it tries to include a header file by the line "open_spiel/abseil-cpp/absl/random/bit_gen_ref.h". My xmake.lua is:
target("test")
set_kind("binary")
add_includedirs("open_spiel/")
add_includedirs("open_spiel/abseil-cpp/absl/random")
add_files("open_spiel/spiel.cc")
However, neither command "add_includedirs("open_spiel/")" nor the command "add_includedirs("open_spiel/abseil-cpp/absl/random")" works.
Could you give me any suggestions?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions