|
42 | 42 | "../../pilotlight/extensions", |
43 | 43 | "../../pilotlight/src", |
44 | 44 | "../../pilotlight/shaders", |
45 | | - "../../pilotlight/dependencies/stb", |
46 | | - "../../pilotlight/dependencies/glfw/include/", |
47 | | - "../../pilotlight/dependencies/imgui/", |
48 | | - "../../pilotlight/dependencies/cgltf", |
| 45 | + "../../pilotlight/thirdparty/stb", |
| 46 | + "../../pilotlight/thirdparty/glfw/include/", |
| 47 | + "../../pilotlight/thirdparty/imgui/", |
| 48 | + "../../pilotlight/thirdparty/cgltf", |
49 | 49 | "../dependencies/cpython/", |
50 | 50 | "../dependencies/cpython/Include/", |
51 | 51 | "../dependencies/cpython/build/debug/" |
|
95 | 95 |
|
96 | 96 | with pl.target("glfw", pl.TargetType.STATIC_LIBRARY, False, False): |
97 | 97 |
|
98 | | - pl.add_source_files("../../pilotlight/dependencies/glfw/src/glfw_unity.c") |
99 | | - pl.add_source_files("../../pilotlight/dependencies/glfw/src/null_window.c") |
| 98 | + pl.add_source_files("../../pilotlight/thirdparty/glfw/src/glfw_unity.c") |
| 99 | + pl.add_source_files("../../pilotlight/thirdparty/glfw/src/null_window.c") |
100 | 100 |
|
101 | 101 | with pl.configuration("debug"): |
102 | 102 |
|
|
117 | 117 | pl.add_dynamic_link_libraries("xcb", "X11", "X11-xcb", "xkbcommon", "pthread", "xcb-cursor", "vulkan") |
118 | 118 | pl.add_link_directories('$VULKAN_SDK/lib') |
119 | 119 | pl.add_compiler_flags("-std=gnu99") |
120 | | - pl.add_source_files("../../pilotlight/dependencies/glfw/src/posix_poll.c") |
| 120 | + pl.add_source_files("../../pilotlight/thirdparty/glfw/src/posix_poll.c") |
121 | 121 |
|
122 | 122 | # apple |
123 | 123 | with pl.platform("Darwin"): |
|
145 | 145 | pl.add_dynamic_link_libraries("xcb", "X11", "X11-xcb", "xkbcommon", "pthread", "xcb-cursor", "vulkan") |
146 | 146 | pl.add_link_directories('$VULKAN_SDK/lib') |
147 | 147 | pl.add_compiler_flags("-std=gnu99") |
148 | | - pl.add_source_files("../../pilotlight/dependencies/glfw/src/posix_poll.c") |
| 148 | + pl.add_source_files("../../pilotlight/thirdparty/glfw/src/posix_poll.c") |
149 | 149 |
|
150 | 150 | # apple |
151 | 151 | with pl.platform("Darwin"): |
|
161 | 161 | with pl.target("imgui", pl.TargetType.STATIC_LIBRARY, False, False): |
162 | 162 |
|
163 | 163 | # imgui & imgui |
164 | | - pl.add_source_files("../../pilotlight/dependencies/imgui/imgui_unity.cpp") |
| 164 | + pl.add_source_files("../../pilotlight/thirdparty/imgui/imgui_unity.cpp") |
165 | 165 |
|
166 | 166 | # default config |
167 | 167 | with pl.configuration("debug"): |
|
0 commit comments