diff options
author | Max Hilbrunner <m.hilbrunner@gmail.com> | 2024-10-31 16:07:01 +0100 |
---|---|---|
committer | Max Hilbrunner <m.hilbrunner@gmail.com> | 2024-10-31 16:07:01 +0100 |
commit | 8c5debeaeda7203f2c25f5b3f9a9d3bf8b78e2ec (patch) | |
tree | f1c303ac193d80bfabbbab88355b1dad04b380e8 | |
parent | ef8d981267702de38ffc24136f9d823d31781c60 (diff) | |
download | redot-engine-8c5debeaeda7203f2c25f5b3f9a9d3bf8b78e2ec.tar.gz |
Allow multiple platform API files
-rw-r--r-- | platform/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/SCsub b/platform/SCsub index 7c9d07f6ef..248b4b88dd 100644 --- a/platform/SCsub +++ b/platform/SCsub @@ -60,7 +60,7 @@ register_platform_apis = env.CommandNoCache( ) env.add_source_files(env.platform_sources, register_platform_apis) for platform in env.platform_apis: - env.add_source_files(env.platform_sources, f"{platform}/api/api.cpp") + env.add_source_files(env.platform_sources, f"{platform}/api/*.cpp") lib = env.add_library("platform", env.platform_sources) env.Prepend(LIBS=[lib]) |