Separate headers from src and make the headers hpp

Signed-off-by: somebody_master <somebody_master@somebodyserver.mooo.com>
This commit is contained in:
2023-03-08 22:46:49 +01:00
parent 0d03a90f08
commit fe90b92792
5 changed files with 10 additions and 9 deletions

View File

@ -1,8 +1,9 @@
env = SConscript("godot-cpp/SConstruct")
env.Append(CPPPATH="src/")
env.Append(CPPPATH=["src/","include/"])
src = Glob("src/*.cpp")
headers = Glob("include/*.hpp")
if env["platform"] == "linux":
pass