├── .gitignore ├── Doc ├── nvcc.txt └── wave.txt ├── LICENSE ├── Python ├── BuildSystem.py ├── CUDAPlatform.py ├── ComputeBridgePlatform.py ├── CppLanguage.py ├── DirectXPlatform.py ├── Environment.py ├── MSVCGeneration.py ├── MSVCPlatform.py ├── OpenCLPlatform.py ├── Packages.py ├── PiB.bat ├── PiB.py ├── Process.py ├── ShaderCompiler.py ├── Utils.py ├── Wave.py ├── WindowsPlatform.py └── clReflect.py ├── README ├── Test ├── Code │ ├── Main.cpp │ ├── MainDepA.h │ ├── MainDepB.h │ ├── MainDepC.h │ ├── Other.cpp │ ├── SubDepA.h │ ├── abs │ │ └── unk.cpp │ └── rec │ │ ├── hello │ │ └── old.cpp │ │ └── new.cpp ├── pibfile └── purge.bat └── VSMacros └── PiBMacros └── PiBMacros.vsmacros /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/.gitignore -------------------------------------------------------------------------------- /Doc/nvcc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Doc/nvcc.txt -------------------------------------------------------------------------------- /Doc/wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Doc/wave.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/BuildSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/BuildSystem.py -------------------------------------------------------------------------------- /Python/CUDAPlatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/CUDAPlatform.py -------------------------------------------------------------------------------- /Python/ComputeBridgePlatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/ComputeBridgePlatform.py -------------------------------------------------------------------------------- /Python/CppLanguage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/CppLanguage.py -------------------------------------------------------------------------------- /Python/DirectXPlatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/DirectXPlatform.py -------------------------------------------------------------------------------- /Python/Environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/Environment.py -------------------------------------------------------------------------------- /Python/MSVCGeneration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/MSVCGeneration.py -------------------------------------------------------------------------------- /Python/MSVCPlatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/MSVCPlatform.py -------------------------------------------------------------------------------- /Python/OpenCLPlatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/OpenCLPlatform.py -------------------------------------------------------------------------------- /Python/Packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/Packages.py -------------------------------------------------------------------------------- /Python/PiB.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/PiB.bat -------------------------------------------------------------------------------- /Python/PiB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/PiB.py -------------------------------------------------------------------------------- /Python/Process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/Process.py -------------------------------------------------------------------------------- /Python/ShaderCompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/ShaderCompiler.py -------------------------------------------------------------------------------- /Python/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/Utils.py -------------------------------------------------------------------------------- /Python/Wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/Wave.py -------------------------------------------------------------------------------- /Python/WindowsPlatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/WindowsPlatform.py -------------------------------------------------------------------------------- /Python/clReflect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Python/clReflect.py -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/README -------------------------------------------------------------------------------- /Test/Code/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Test/Code/Main.cpp -------------------------------------------------------------------------------- /Test/Code/MainDepA.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "SubDepA.h" -------------------------------------------------------------------------------- /Test/Code/MainDepB.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "SubDepA.h" -------------------------------------------------------------------------------- /Test/Code/MainDepC.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | #include "MainDepA.h" -------------------------------------------------------------------------------- /Test/Code/Other.cpp: -------------------------------------------------------------------------------- 1 | #include "MainDepB.h" -------------------------------------------------------------------------------- /Test/Code/SubDepA.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | -------------------------------------------------------------------------------- /Test/Code/abs/unk.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Test/Code/rec/hello/old.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Test/Code/rec/new.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Test/pibfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Test/pibfile -------------------------------------------------------------------------------- /Test/purge.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/Test/purge.bat -------------------------------------------------------------------------------- /VSMacros/PiBMacros/PiBMacros.vsmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Celtoys/PiB/HEAD/VSMacros/PiBMacros/PiBMacros.vsmacros --------------------------------------------------------------------------------