diff --git a/README.md b/README.md
index 110697c..dac70b5 100644
--- a/README.md
+++ b/README.md
@@ -3,11 +3,231 @@ CUDA Path Tracer
**University of Pennsylvania, CIS 565: GPU Programming and Architecture, Project 3**
-* (TODO) YOUR NAME HERE
-* Tested on: (TODO) Windows 22, i7-2222 @ 2.22GHz 22GB, GTX 222 222MB (Moore 2222 Lab)
+* Rony Edde (redde)
+* Tested on: Windows 10, i7-6700k @ 4.00GHz 64GB, GTX 980M 8GB (Personal Laptop)
-### (TODO: Your README)
-*DO NOT* leave the README to the last minute! It is a crucial part of the
-project, and we will not be able to grade you without a good README.
+This is a path tracer running on the GPU using CUDA.
+* 
+* Controls
+ * Esc to save an image and exit.
+ * S to save an image. Watch the console for the output filename.
+ * Space to re-center the camera at the original scene lookAt point.
+ * A for enabling / disabling anti-aliasing.
+ * 0 for resetting depth of field to zero focal length and zero blur.
+ * - for decreasing depth of field.
+ * = for increasing depth of field.
+ * [ for decreasing focal length.
+ * ] for increasing focal length.
+ * C for enabling / disabling caching and sorting (disbled by default).
+ * X for enabling / disabling subsurface scattering (only materials with sss).
+ * F for enabling / disabling stream compaction and ray sorting by material.
+ * T for enabling / disabling benchmark tests.
+ * 1 reduce soft reflections/refractions.
+ * 2 increase soft reflections/refractions.
+ * Keyboard up shifts the camera up.
+ * Keyboard down shifts the camera down.
+ * Keyboard left shifts the camera left.
+ * Keyboard right shifts the camera right.
+ * Left mouse button to rotate the camera.
+ * Right mouse button on the vertical axis to zoom in/out.
+ * Middle mouse button to move the LOOKAT point in the scene's X/Z plane.
+
+
+* Features
+ * BSDF shading with diffuse, reflection and refractions.
+ * Thrust stream compaction for eliminating unused rays.
+ * Ray sorting by material id.
+ * Caching rays on first bounce to avoid repetitive regeneration.
+
+
+* Additional features
+ * Fresnel refraction using Shlick's 5th power implementation.
+ * soft reflections and refractions.
+ * Anti-aliasing using uniform spherical distribution to avoid polar distribution.
+ * Obj file format loader with auto loading mtl material file suppport.
+ * Depth of field using uniform spherical distribution and focal point jitter.
+ Caching must be disabled for this to work (C).
+ * Subsurface scattering by depth tracing and uniform scattering.
+
+
+* Fresnel reflection refraction
+ * Using [Shlick's approximation formula](https://en.wikipedia.org/wiki/Schlick%27s_approximation),
+ we can decide when to break our rays into reflection or refraction.
+ There is still a random factor in place due to the nature of path tracing but this gives a smooth
+ transition between reflection and refraction.
+ We start with basic reflection only. Here the ray is just reflected when it hits the surface.
+ There are no other randomization factors although this would be beneficial for soft reflections later on.
+ Here's what we get when we reflect the ray:
+ * 
+ Now we have to implement refractions. In order to do this we need to know if the ray is inside the surface
+ or outside so that we can refract with the correct index of refraction or reflect. The index of refraction
+ used entering the surface is the inverse of the ray exiting the surface. We keep track of the inside flag and
+ update that accordingly. We then apply our fresnel function to determine if we reflect or refract.
+ Bur before we do so, we need to decide beforehand if the ray will be refracted instead of just using glm::refract
+ since we need to know how to set the inside flag. Once this is done we apply our fresnel function and we are done.
+ Here's what refraction loks like when we don't check for change in surface penetration.
+ * 
+ And after fixing with proper separation, the final result can be seen:
+ * 
+
+ Here are a few tests with different reflection / refraction coeficients
+ * 
+
+
+* Soft reflections
+ When using a uniform distribution function, one can achieve soft reflections and refractions
+ Here's a reflection and refraction test
+ Once we check for surface penetration and apply our fresnel function we get this:
+ * 
+ And finally when we enable soft reflections, we get this:
+ * 
+
+
+* Anti-aliasing
+ * jittering the ray to produce antialiasing. Initial tests uniformly
+ blurred the image procucing undesirable effets. In this image the
+ random generation was being recycled to identify the spread.
+ * 
+
+ Using a blur the size of 2 pixels produced a much better result.
+ Here's the final result after implementing
+ a uniform spherical distribution.
+ * 
+
+
+ * 
+
+
+* Obj reader with mtl file support
+ * Using [tinyObj](https://syoyo.github.io/tinyobjloader/), we can read obj data
+ and material info and use the loaded geometry to compute our paths.
+ This implementation supports polygons with normals and interpolates normal values
+ in order to maintain smooth shading. The biggest hurdle as is well known, is computing
+ the intersections of all the polygons in the scene. This tends to get heavy very quickly
+ which means that a KD-Tree solution or BSP or alike is inevitable. Due to time constraints
+ this was not possible but this is definitely worth pursuing.
+ The obj loader looks for mtl files within the same directory as the obj. If none exist,
+ the objects loaded will have a default white material. The material information is
+ converted to our scene format and used for shading.
+ Topological information is stored linearly due to the complexities of allocating pointers
+ of pointers on the GPU. While this is usually not desirable, the only disadvantage was the
+ function parameters which increased.
+ Each object is checked for intersection by checking the cached object bounding box. If the
+ object's bounding box intersects the ray, we go through all the polygons and check for
+ intersections. One polygon at a time. And this still preserves surface contuinuity since
+ the normals are interpolated based on their barycentric coordinates. The only exception
+ is when the model's normals have been cusped before exporting them which is the desirable
+ result.
+ All 3D models are from [turbosquid](http://www.turbosquid.com)
+ Here's a wolf model with smooth normals and a few cusped normals for creasing parts of the
+ geometry:
+ * 
+
+ And here's a model with completely cusped normals.
+ * 
+
+
+* Depth of field
+ * By rotating the camera around its focal length, we can produce a blur that increases with
+ the distance from the focal point. This in effect generated a depth of field similar to a camera
+ focusing with a large aperture.
+ Rotating the camera around it's focal point is not always straight forward because of the axis alignment
+ problem. That's why the spherical distribution needs to be uniform and not polar. Furthermore,
+ to support all camera directions, we need to make the angles valid. So the main idea is to
+ generate a uniformly random distribution cone aligned to the Z axis and align this to the camera's
+ look at vector. This is then used to rotate the camera around the focal point offset.
+ Here are a few results.
+ * 
+ * 
+ * 
+
+
+* Subsurface scattering
+ * When enabled, every ray that hits the surface will get projected inside the surface with
+ a scattering factor. The rays will bounce out of the surface and the depth travelled by
+ the ray is computed and used for shading the final result. This only applies with obj files
+ that have a translucency color. This effect can be enabled or disabled with the X key.
+ When the depth calculation doesn't take into account a zero influence outside the surface, we get
+ artifacts and in some cases this can be seen as banding.
+ Here's what the low poly stanford bunny looks like with and without sss.
+ * 
+
+
+* Performance
+ * Analysis on the time taken for the cuda calls is as follows.
+ * The functions in question are
+ - generateRayFromCamera which generates rays from the camera.
+ - pathtraceOneBounce which calculates one pass for the rays.
+ - shadeMaterial which applies the BSDF functions to the rays.
+ * The test runs 100 iterations using the following wedges:
+ * caching off: no ray caching of the camera rays.
+ * caching on: the initial camera rays are cached for reuse
+ * no stream compaction: rays with final hit are not removed.
+ * sorting off: ray sorting by material id is disabled.
+ * blocksize 16/32/64/128/256 are tests running with different blocksizes.
+
+ * The initial graph when all is put together is not particularly helpful.
+ We notice slight improvements with caching and stream compaction but it
+ is difficult to see clearly how every function compares.
+ Here's the initial graph (lower is better):
+ * 
+
+ * In order to get a better view of the result, we seperate the calls.
+ Here are the calls to the pathTraceOneBounce function:
+ * 
+ And the calls to generateRaysFromCamera:
+ * 
+ We have a slightly better view on the performance advantage of caching but we still
+ can't easily compare the results.
+ In order to get a better comparison we generate a chart for all the tests by their category.
+ We do this by averaging the results. We now have the following charts:
+ * 
+ The shadeMaterial function is too fast to be shown so we plot it separately:
+ * 
+
+ Now we can clearly see what's happening. (lower is better)
+ * genRayfromCam shows a pretty good improvement with ray caching. This is expected
+ since the rays that are being cached are reused instead of being regenerated. Changing
+ block sizes didn't seem to make a big impact though.
+
+ * pathTraceOneBounce shows quite a big drop in performance when disabling stream compaction.
+ with double the time taken when stream compaction is disabled in a default scene. This
+ obviously would be a much bigger impact if the scene was mostly background color.
+ Again this is expected sine we recompute rays that would have been removed. What was not
+ expected was wiht a block size of 16. The performance hit of 1.8 times is considerable since
+ caching is enabled for all the block size benchmarks. The hit is so considerable that it is
+ actually worse than not having stream compaction with an different block size.
+ This is possibly due to the use of a full warp for only 16 blocks underutilizing the processor
+ and stalling the remaining blocks. The interesting thing to note is that a block size of 32
+ was the most efficient while increasing this slightly reduced performance.
+
+ * shadeMaterial is now clearly visible in the isolated chart. We can see that the results
+ are similar to the pathTraceOneBounce function. The only difference is that caching the
+ rays did not affect the shading which is completely normal since the rays that are being
+ passed are the same size. But we do see a massive hit in performance again when caching
+ is disabled. This reduced the performance by 2.8 times which is very significant.
+ Reducing the block size to 16 also had an impact. Although being less than the one we got with
+ pathTraceOneBounce, at 1.4 times the time needed, it's a 40% decrease in performance.
+
+
+
+* Bloopers
+ * inaccurate distribution
+ 
+
+ * collisions gone wrong
+ 
+
+ * flat posters
+ 
+
+ * grids and lines from distorted camera
+ 
+
+ * lack of precision
+ 
+
+ * Thanks!
+ 
diff --git a/build/ALL_BUILD.vcxproj b/build/ALL_BUILD.vcxproj
new file mode 100644
index 0000000..2ae1d7e
--- /dev/null
+++ b/build/ALL_BUILD.vcxproj
@@ -0,0 +1,178 @@
+
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {30DC4AE1-7B59-3E8F-A251-04F2010BC082}
+ Win32Proj
+ x64
+ ALL_BUILD
+
+
+
+ Utility
+ false
+ MultiByte
+ v120
+
+
+ Utility
+ false
+ MultiByte
+ v120
+
+
+ Utility
+ false
+ MultiByte
+ v120
+
+
+ Utility
+ false
+ MultiByte
+ v120
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ Building Custom Rule C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-file C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-file C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-file C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-file C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+ 011DD20C-CB3D-35BA-8D9D-2182FB8CA263
+
+
+ FEE5D524-60D4-37AE-89B3-448E35B99F06
+
+
+ 41D13C2A-D743-38AA-BF19-6293C92EBC79
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/ALL_BUILD.vcxproj.filters b/build/ALL_BUILD.vcxproj.filters
new file mode 100644
index 0000000..2d8c350
--- /dev/null
+++ b/build/ALL_BUILD.vcxproj.filters
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt
new file mode 100644
index 0000000..5961b46
--- /dev/null
+++ b/build/CMakeCache.txt
@@ -0,0 +1,500 @@
+# This is the CMakeCache file.
+# For build in directory: c:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build
+# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe
+# You can edit this file to change values found and used by cmake.
+# If you do not want to change any of the values, simply exit the editor.
+# If you do want to change a value, simply edit, save, and exit the editor.
+# The syntax for the file is as follows:
+# KEY:TYPE=VALUE
+# KEY is the name of a variable in the cache.
+# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
+# VALUE is the current value for the KEY.
+
+########################
+# EXTERNAL cache entries
+########################
+
+//Semicolon separated list of supported configuration types, only
+// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything
+// else will be ignored.
+CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo
+
+//Flags used by the compiler during all build types.
+CMAKE_CXX_FLAGS:STRING= /DWIN32 /D_WINDOWS /W3 /GR /EHsc
+
+//Flags used by the compiler during debug builds.
+CMAKE_CXX_FLAGS_DEBUG:STRING=/D_DEBUG /MDd /Zi /Ob0 /Od /RTC1
+
+//Flags used by the compiler during release builds for minimum
+// size.
+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG
+
+//Flags used by the compiler during release builds.
+CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
+
+//Flags used by the compiler during release builds with debug info.
+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG
+
+//Libraries linked by default with all C++ applications.
+CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib
+
+//Flags used by the compiler during all build types.
+CMAKE_C_FLAGS:STRING= /DWIN32 /D_WINDOWS /W3
+
+//Flags used by the compiler during debug builds.
+CMAKE_C_FLAGS_DEBUG:STRING=/D_DEBUG /MDd /Zi /Ob0 /Od /RTC1
+
+//Flags used by the compiler during release builds for minimum
+// size.
+CMAKE_C_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG
+
+//Flags used by the compiler during release builds.
+CMAKE_C_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
+
+//Flags used by the compiler during release builds with debug info.
+CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG
+
+//Libraries linked by default with all C applications.
+CMAKE_C_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib
+
+//Flags used by the linker.
+CMAKE_EXE_LINKER_FLAGS:STRING= /machine:x64
+
+//Flags used by the linker during debug builds.
+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during release minsize builds.
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during release builds.
+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during Release with Debug Info builds.
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//Install path prefix, prepended onto install directories.
+CMAKE_INSTALL_PREFIX:PATH=C:/Program Files/cis565_path_tracer
+
+//Path to a program.
+CMAKE_LINKER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/link.exe
+
+//Flags used by the linker during the creation of modules.
+CMAKE_MODULE_LINKER_FLAGS:STRING= /machine:x64
+
+//Flags used by the linker during debug builds.
+CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during release minsize builds.
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during release builds.
+CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during Release with Debug Info builds.
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//Value Computed by CMake
+CMAKE_PROJECT_NAME:STATIC=cis565_path_tracer
+
+//RC compiler
+CMAKE_RC_COMPILER:FILEPATH=rc
+
+//Flags for Windows Resource Compiler.
+CMAKE_RC_FLAGS:STRING=' /DWIN32 '
+
+//Flags used by the linker during the creation of dll's.
+CMAKE_SHARED_LINKER_FLAGS:STRING= /machine:x64
+
+//Flags used by the linker during debug builds.
+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during release minsize builds.
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during release builds.
+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during Release with Debug Info builds.
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//If set, runtime paths are not added when installing shared libraries,
+// but are added when building.
+CMAKE_SKIP_INSTALL_RPATH:BOOL=OFF
+
+//If set, runtime paths are not added when using shared libraries.
+CMAKE_SKIP_RPATH:BOOL=OFF
+
+//Flags used by the linker during the creation of static libraries.
+CMAKE_STATIC_LINKER_FLAGS:STRING= /machine:x64
+
+//Flags used by the linker during debug builds.
+CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during release minsize builds.
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during release builds.
+CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during Release with Debug Info builds.
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//If this value is on, makefiles will be generated without the
+// .SILENT directive, and all commands will be echoed to the console
+// during the make. This is useful for debugging only. With Visual
+// Studio IDE projects all commands are done without /nologo.
+CMAKE_VERBOSE_MAKEFILE:BOOL=OFF
+
+//Compile device code in 64 bit mode
+CUDA_64_BIT_DEVICE_CODE:BOOL=ON
+
+//Attach the build rule to the CUDA source file. Enable only when
+// the CUDA source file is added to at most one target.
+CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE:BOOL=ON
+
+//Generate and parse .cubin files in Device mode.
+CUDA_BUILD_CUBIN:BOOL=OFF
+
+//Build in Emulation mode
+CUDA_BUILD_EMULATION:BOOL=OFF
+
+//"cudart" library
+CUDA_CUDART_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/cudart.lib
+
+//"cuda" library (older versions only).
+CUDA_CUDA_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/cuda.lib
+
+//Directory to put all the output files. If blank it will default
+// to the CMAKE_CURRENT_BINARY_DIR
+CUDA_GENERATED_OUTPUT_DIR:PATH=
+
+//Generated file extension
+CUDA_HOST_COMPILATION_CPP:BOOL=ON
+
+//Host side compiler used by NVCC
+CUDA_HOST_COMPILER:FILEPATH=$(VCInstallDir)bin
+
+//Path to a program.
+CUDA_NVCC_EXECUTABLE:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/bin/nvcc.exe
+
+//Semi-colon delimit multiple arguments.
+CUDA_NVCC_FLAGS:STRING=
+
+//Semi-colon delimit multiple arguments.
+CUDA_NVCC_FLAGS_DEBUG:STRING=
+
+//Semi-colon delimit multiple arguments.
+CUDA_NVCC_FLAGS_MINSIZEREL:STRING=
+
+//Semi-colon delimit multiple arguments.
+CUDA_NVCC_FLAGS_RELEASE:STRING=
+
+//Semi-colon delimit multiple arguments.
+CUDA_NVCC_FLAGS_RELWITHDEBINFO:STRING=
+
+//Propage C/CXX_FLAGS and friends to the host compiler via -Xcompile
+CUDA_PROPAGATE_HOST_FLAGS:BOOL=ON
+
+//Path to a file.
+CUDA_SDK_ROOT_DIR:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5
+
+//Compile CUDA objects with separable compilation enabled. Requires
+// CUDA 5.0+
+CUDA_SEPARABLE_COMPILATION:BOOL=OFF
+
+//Specify the name of the class of CPU architecture for which the
+// input files must be compiled.
+CUDA_TARGET_CPU_ARCH:STRING=
+
+//Path to a file.
+CUDA_TOOLKIT_INCLUDE:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include
+
+//Toolkit location.
+CUDA_TOOLKIT_ROOT_DIR:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5
+
+//Toolkit target location.
+CUDA_TOOLKIT_TARGET_DIR:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5
+
+//Use the static version of the CUDA runtime library if available
+CUDA_USE_STATIC_CUDA_RUNTIME:BOOL=ON
+
+//Print out the commands run while compiling the CUDA source file.
+// With the Makefile generator this defaults to VERBOSE variable
+// specified on the command line, but can be forced on with this
+// option.
+CUDA_VERBOSE_BUILD:BOOL=OFF
+
+//Version of CUDA as computed from nvcc.
+CUDA_VERSION:STRING=7.5
+
+//"cublas" library
+CUDA_cublas_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/cublas.lib
+
+//static CUDA runtime library
+CUDA_cudart_static_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/cudart_static.lib
+
+//"cufft" library
+CUDA_cufft_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/cufft.lib
+
+//"cupti" library
+CUDA_cupti_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/extras/CUPTI/libx64/cupti.lib
+
+//"curand" library
+CUDA_curand_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/curand.lib
+
+//"cusolver" library
+CUDA_cusolver_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/cusolver.lib
+
+//"cusparse" library
+CUDA_cusparse_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/cusparse.lib
+
+//"nppc" library
+CUDA_nppc_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/nppc.lib
+
+//"nppi" library
+CUDA_nppi_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/nppi.lib
+
+//"npps" library
+CUDA_npps_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/npps.lib
+
+//"nvcuvenc" library
+CUDA_nvcuvenc_LIBRARY:FILEPATH=CUDA_nvcuvenc_LIBRARY-NOTFOUND
+
+//"nvcuvid" library
+CUDA_nvcuvid_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/nvcuvid.lib
+
+//Path to a library.
+GLEW_LIBRARY:FILEPATH=C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win/glew32s.lib
+
+//Path to a library.
+GLFW_LIBRARY:FILEPATH=C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win/glfw3.lib
+
+//OpenGL library for win32
+OPENGL_gl_LIBRARY:STRING=opengl32
+
+//GLU library for win32
+OPENGL_glu_LIBRARY:STRING=glu32
+
+//Value Computed by CMake
+cis565_path_tracer_BINARY_DIR:STATIC=C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build
+
+//Value Computed by CMake
+cis565_path_tracer_SOURCE_DIR:STATIC=C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer
+
+//Dependencies for the target
+src_LIB_DEPENDS:STATIC=general;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/cudart_static.lib;
+
+
+########################
+# INTERNAL cache entries
+########################
+
+//This is the directory where this CMakeCache.txt was created
+CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build
+//Major version of cmake used to create the current loaded cache
+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
+//Minor version of cmake used to create the current loaded cache
+CMAKE_CACHE_MINOR_VERSION:INTERNAL=6
+//Patch version of cmake used to create the current loaded cache
+CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
+//Path to CMake executable.
+CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe
+//Path to cpack program executable.
+CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe
+//Path to ctest program executable.
+CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe
+//ADVANCED property for variable: CMAKE_CXX_FLAGS
+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES
+CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS
+CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
+CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
+CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
+CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
+CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES
+CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
+//Executable file format
+CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
+CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
+CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
+CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//Name of external makefile project generator.
+CMAKE_EXTRA_GENERATOR:INTERNAL=
+//Name of generator.
+CMAKE_GENERATOR:INTERNAL=Visual Studio 12 2013 Win64
+//Name of generator platform.
+CMAKE_GENERATOR_PLATFORM:INTERNAL=
+//Name of generator toolset.
+CMAKE_GENERATOR_TOOLSET:INTERNAL=
+//Have include pthread.h
+CMAKE_HAVE_PTHREAD_H:INTERNAL=
+//Source directory with the top level CMakeLists.txt file for this
+// project
+CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer
+//ADVANCED property for variable: CMAKE_LINKER
+CMAKE_LINKER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
+CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
+CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
+CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//number of local generators
+CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=2
+//ADVANCED property for variable: CMAKE_RC_COMPILER
+CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1
+CMAKE_RC_COMPILER_WORKS:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS
+CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1
+//Path to CMake installation.
+CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.6
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_RPATH
+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
+CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
+CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
+CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_64_BIT_DEVICE_CODE
+CUDA_64_BIT_DEVICE_CODE-ADVANCED:INTERNAL=1
+//List of intermediate files that are part of the cuda dependency
+// scanning.
+CUDA_ADDITIONAL_CLEAN_FILES:INTERNAL=C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir//src_generated_pathtrace.cu.obj.depend
+//ADVANCED property for variable: CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE
+CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_BUILD_CUBIN
+CUDA_BUILD_CUBIN-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_BUILD_EMULATION
+CUDA_BUILD_EMULATION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_CUDART_LIBRARY
+CUDA_CUDART_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_CUDA_LIBRARY
+CUDA_CUDA_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_GENERATED_OUTPUT_DIR
+CUDA_GENERATED_OUTPUT_DIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_HOST_COMPILATION_CPP
+CUDA_HOST_COMPILATION_CPP-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_EXECUTABLE
+CUDA_NVCC_EXECUTABLE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS
+CUDA_NVCC_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_DEBUG
+CUDA_NVCC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_MINSIZEREL
+CUDA_NVCC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_RELEASE
+CUDA_NVCC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_RELWITHDEBINFO
+CUDA_NVCC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_PROPAGATE_HOST_FLAGS
+CUDA_PROPAGATE_HOST_FLAGS-ADVANCED:INTERNAL=1
+//This is the value of the last time CUDA_SDK_ROOT_DIR was set
+// successfully.
+CUDA_SDK_ROOT_DIR_INTERNAL:INTERNAL=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5
+//ADVANCED property for variable: CUDA_SEPARABLE_COMPILATION
+CUDA_SEPARABLE_COMPILATION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_TARGET_CPU_ARCH
+CUDA_TARGET_CPU_ARCH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_TOOLKIT_INCLUDE
+CUDA_TOOLKIT_INCLUDE-ADVANCED:INTERNAL=1
+//This is the value of the last time CUDA_TOOLKIT_ROOT_DIR was
+// set successfully.
+CUDA_TOOLKIT_ROOT_DIR_INTERNAL:INTERNAL=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5
+//ADVANCED property for variable: CUDA_TOOLKIT_TARGET_DIR
+CUDA_TOOLKIT_TARGET_DIR-ADVANCED:INTERNAL=1
+//This is the value of the last time CUDA_TOOLKIT_TARGET_DIR was
+// set successfully.
+CUDA_TOOLKIT_TARGET_DIR_INTERNAL:INTERNAL=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5
+//ADVANCED property for variable: CUDA_VERBOSE_BUILD
+CUDA_VERBOSE_BUILD-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_VERSION
+CUDA_VERSION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cublas_LIBRARY
+CUDA_cublas_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cudart_static_LIBRARY
+CUDA_cudart_static_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cufft_LIBRARY
+CUDA_cufft_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cupti_LIBRARY
+CUDA_cupti_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_curand_LIBRARY
+CUDA_curand_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cusolver_LIBRARY
+CUDA_cusolver_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cusparse_LIBRARY
+CUDA_cusparse_LIBRARY-ADVANCED:INTERNAL=1
+//Location of make2cmake.cmake
+CUDA_make2cmake:INTERNAL=C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/cmake/FindCUDA/make2cmake.cmake
+//ADVANCED property for variable: CUDA_nppc_LIBRARY
+CUDA_nppc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppi_LIBRARY
+CUDA_nppi_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_npps_LIBRARY
+CUDA_npps_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nvcuvenc_LIBRARY
+CUDA_nvcuvenc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nvcuvid_LIBRARY
+CUDA_nvcuvid_LIBRARY-ADVANCED:INTERNAL=1
+//Location of parse_cubin.cmake
+CUDA_parse_cubin:INTERNAL=C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/cmake/FindCUDA/parse_cubin.cmake
+//Location of run_nvcc.cmake
+CUDA_run_nvcc:INTERNAL=C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/cmake/FindCUDA/run_nvcc.cmake
+//Details about finding CUDA
+FIND_PACKAGE_MESSAGE_DETAILS_CUDA:INTERNAL=[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5][C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/bin/nvcc.exe][C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include][C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/lib/x64/cudart.lib][v7.5()]
+//Details about finding GLEW
+FIND_PACKAGE_MESSAGE_DETAILS_GLEW:INTERNAL=[external/include][C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win/glew32s.lib][v()]
+//Details about finding OpenGL
+FIND_PACKAGE_MESSAGE_DETAILS_OpenGL:INTERNAL=[opengl32][v()]
+//Details about finding Threads
+FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
+//ADVANCED property for variable: GLEW_LIBRARY
+GLEW_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: OPENGL_gl_LIBRARY
+OPENGL_gl_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: OPENGL_glu_LIBRARY
+OPENGL_glu_LIBRARY-ADVANCED:INTERNAL=1
+
diff --git a/build/CMakeFiles/0a9519b303e1b5029a75e73c81492ebd/generate.stamp.rule b/build/CMakeFiles/0a9519b303e1b5029a75e73c81492ebd/generate.stamp.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/build/CMakeFiles/0a9519b303e1b5029a75e73c81492ebd/generate.stamp.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/build/CMakeFiles/3.6.1/CMakeCCompiler.cmake b/build/CMakeFiles/3.6.1/CMakeCCompiler.cmake
new file mode 100644
index 0000000..c0eba2f
--- /dev/null
+++ b/build/CMakeFiles/3.6.1/CMakeCCompiler.cmake
@@ -0,0 +1,67 @@
+set(CMAKE_C_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/cl.exe")
+set(CMAKE_C_COMPILER_ARG1 "")
+set(CMAKE_C_COMPILER_ID "MSVC")
+set(CMAKE_C_COMPILER_VERSION "18.0.40629.0")
+set(CMAKE_C_COMPILER_WRAPPER "")
+set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "90")
+set(CMAKE_C_COMPILE_FEATURES "")
+set(CMAKE_C90_COMPILE_FEATURES "")
+set(CMAKE_C99_COMPILE_FEATURES "")
+set(CMAKE_C11_COMPILE_FEATURES "")
+
+set(CMAKE_C_PLATFORM_ID "Windows")
+set(CMAKE_C_SIMULATE_ID "")
+set(CMAKE_C_SIMULATE_VERSION "")
+set(MSVC_C_ARCHITECTURE_ID x64)
+set(CMAKE_AR "")
+set(CMAKE_RANLIB "")
+set(CMAKE_LINKER "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/link.exe")
+set(CMAKE_COMPILER_IS_GNUCC )
+set(CMAKE_C_COMPILER_LOADED 1)
+set(CMAKE_C_COMPILER_WORKS TRUE)
+set(CMAKE_C_ABI_COMPILED TRUE)
+set(CMAKE_COMPILER_IS_MINGW )
+set(CMAKE_COMPILER_IS_CYGWIN )
+if(CMAKE_COMPILER_IS_CYGWIN)
+ set(CYGWIN 1)
+ set(UNIX 1)
+endif()
+
+set(CMAKE_C_COMPILER_ENV_VAR "CC")
+
+if(CMAKE_COMPILER_IS_MINGW)
+ set(MINGW 1)
+endif()
+set(CMAKE_C_COMPILER_ID_RUN 1)
+set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
+set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
+set(CMAKE_C_LINKER_PREFERENCE 10)
+
+# Save compiler ABI information.
+set(CMAKE_C_SIZEOF_DATA_PTR "8")
+set(CMAKE_C_COMPILER_ABI "")
+set(CMAKE_C_LIBRARY_ARCHITECTURE "")
+
+if(CMAKE_C_SIZEOF_DATA_PTR)
+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
+endif()
+
+if(CMAKE_C_COMPILER_ABI)
+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
+endif()
+
+if(CMAKE_C_LIBRARY_ARCHITECTURE)
+ set(CMAKE_LIBRARY_ARCHITECTURE "")
+endif()
+
+set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
+if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
+endif()
+
+
+
+
+set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
+set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
+set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
diff --git a/build/CMakeFiles/3.6.1/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.6.1/CMakeCXXCompiler.cmake
new file mode 100644
index 0000000..8b90299
--- /dev/null
+++ b/build/CMakeFiles/3.6.1/CMakeCXXCompiler.cmake
@@ -0,0 +1,68 @@
+set(CMAKE_CXX_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/cl.exe")
+set(CMAKE_CXX_COMPILER_ARG1 "")
+set(CMAKE_CXX_COMPILER_ID "MSVC")
+set(CMAKE_CXX_COMPILER_VERSION "18.0.40629.0")
+set(CMAKE_CXX_COMPILER_WRAPPER "")
+set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98")
+set(CMAKE_CXX_COMPILE_FEATURES "cxx_alias_templates;cxx_auto_type;cxx_contextual_conversions;cxx_decltype;cxx_default_function_template_args;cxx_defaulted_functions;cxx_delegating_constructors;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_generalized_initializers;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_right_angle_brackets;cxx_rvalue_references;cxx_static_assert;cxx_strong_enums;cxx_template_template_parameters;cxx_trailing_return_types;cxx_uniform_initialization;cxx_variadic_macros;cxx_variadic_templates")
+set(CMAKE_CXX98_COMPILE_FEATURES "")
+set(CMAKE_CXX11_COMPILE_FEATURES "")
+set(CMAKE_CXX14_COMPILE_FEATURES "")
+
+set(CMAKE_CXX_PLATFORM_ID "Windows")
+set(CMAKE_CXX_SIMULATE_ID "")
+set(CMAKE_CXX_SIMULATE_VERSION "")
+set(MSVC_CXX_ARCHITECTURE_ID x64)
+set(CMAKE_AR "")
+set(CMAKE_RANLIB "")
+set(CMAKE_LINKER "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/link.exe")
+set(CMAKE_COMPILER_IS_GNUCXX )
+set(CMAKE_CXX_COMPILER_LOADED 1)
+set(CMAKE_CXX_COMPILER_WORKS TRUE)
+set(CMAKE_CXX_ABI_COMPILED TRUE)
+set(CMAKE_COMPILER_IS_MINGW )
+set(CMAKE_COMPILER_IS_CYGWIN )
+if(CMAKE_COMPILER_IS_CYGWIN)
+ set(CYGWIN 1)
+ set(UNIX 1)
+endif()
+
+set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
+
+if(CMAKE_COMPILER_IS_MINGW)
+ set(MINGW 1)
+endif()
+set(CMAKE_CXX_COMPILER_ID_RUN 1)
+set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
+set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP)
+set(CMAKE_CXX_LINKER_PREFERENCE 30)
+set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
+
+# Save compiler ABI information.
+set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
+set(CMAKE_CXX_COMPILER_ABI "")
+set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
+
+if(CMAKE_CXX_SIZEOF_DATA_PTR)
+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
+endif()
+
+if(CMAKE_CXX_COMPILER_ABI)
+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
+endif()
+
+if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
+ set(CMAKE_LIBRARY_ARCHITECTURE "")
+endif()
+
+set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
+if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
+endif()
+
+
+
+
+set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
+set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "")
+set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
diff --git a/build/CMakeFiles/3.6.1/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.6.1/CMakeDetermineCompilerABI_C.bin
new file mode 100644
index 0000000..4506ad4
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CMakeDetermineCompilerABI_C.bin differ
diff --git a/build/CMakeFiles/3.6.1/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.6.1/CMakeDetermineCompilerABI_CXX.bin
new file mode 100644
index 0000000..adc20bb
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CMakeDetermineCompilerABI_CXX.bin differ
diff --git a/build/CMakeFiles/3.6.1/CMakeRCCompiler.cmake b/build/CMakeFiles/3.6.1/CMakeRCCompiler.cmake
new file mode 100644
index 0000000..0f61961
--- /dev/null
+++ b/build/CMakeFiles/3.6.1/CMakeRCCompiler.cmake
@@ -0,0 +1,6 @@
+set(CMAKE_RC_COMPILER "rc")
+set(CMAKE_RC_COMPILER_ARG1 "")
+set(CMAKE_RC_COMPILER_LOADED 1)
+set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC)
+set(CMAKE_RC_OUTPUT_EXTENSION .res)
+set(CMAKE_RC_COMPILER_ENV_VAR "RC")
diff --git a/build/CMakeFiles/3.6.1/CMakeSystem.cmake b/build/CMakeFiles/3.6.1/CMakeSystem.cmake
new file mode 100644
index 0000000..8596edb
--- /dev/null
+++ b/build/CMakeFiles/3.6.1/CMakeSystem.cmake
@@ -0,0 +1,15 @@
+set(CMAKE_HOST_SYSTEM "Windows-10.0.14393")
+set(CMAKE_HOST_SYSTEM_NAME "Windows")
+set(CMAKE_HOST_SYSTEM_VERSION "10.0.14393")
+set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
+
+
+
+set(CMAKE_SYSTEM "Windows-10.0.14393")
+set(CMAKE_SYSTEM_NAME "Windows")
+set(CMAKE_SYSTEM_VERSION "10.0.14393")
+set(CMAKE_SYSTEM_PROCESSOR "AMD64")
+
+set(CMAKE_CROSSCOMPILING "FALSE")
+
+set(CMAKE_SYSTEM_LOADED 1)
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/3.6.1/CompilerIdC/CMakeCCompilerId.c
new file mode 100644
index 0000000..512e360
--- /dev/null
+++ b/build/CMakeFiles/3.6.1/CompilerIdC/CMakeCCompilerId.c
@@ -0,0 +1,561 @@
+#ifdef __cplusplus
+# error "A C++ compiler has been selected for C."
+#endif
+
+#if defined(__18CXX)
+# define ID_VOID_MAIN
+#endif
+#if defined(__CLASSIC_C__)
+/* cv-qualifiers did not exist in K&R C */
+# define const
+# define volatile
+#endif
+
+
+/* Version number components: V=Version, R=Revision, P=Patch
+ Version date components: YYYY=Year, MM=Month, DD=Day */
+
+#if defined(__INTEL_COMPILER) || defined(__ICC)
+# define COMPILER_ID "Intel"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+ /* __INTEL_COMPILER = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
+# if defined(__INTEL_COMPILER_UPDATE)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
+# else
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
+# endif
+# if defined(__INTEL_COMPILER_BUILD_DATE)
+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
+# endif
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+
+#elif defined(__PATHCC__)
+# define COMPILER_ID "PathScale"
+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
+# if defined(__PATHCC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
+# endif
+
+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
+# define COMPILER_ID "Embarcadero"
+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
+
+#elif defined(__BORLANDC__)
+# define COMPILER_ID "Borland"
+ /* __BORLANDC__ = 0xVRR */
+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
+
+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
+# define COMPILER_ID "Watcom"
+ /* __WATCOMC__ = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__WATCOMC__)
+# define COMPILER_ID "OpenWatcom"
+ /* __WATCOMC__ = VVRP + 1100 */
+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__SUNPRO_C)
+# define COMPILER_ID "SunPro"
+# if __SUNPRO_C >= 0x5100
+ /* __SUNPRO_C = 0xVRRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
+# else
+ /* __SUNPRO_CC = 0xVRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
+# endif
+
+#elif defined(__HP_cc)
+# define COMPILER_ID "HP"
+ /* __HP_cc = VVRRPP */
+# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
+# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
+# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
+
+#elif defined(__DECC)
+# define COMPILER_ID "Compaq"
+ /* __DECC_VER = VVRRTPPPP */
+# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
+# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
+# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
+
+#elif defined(__IBMC__) && defined(__COMPILER_VER__)
+# define COMPILER_ID "zOS"
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+
+#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
+# define COMPILER_ID "XL"
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+
+#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
+# define COMPILER_ID "VisualAge"
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
+# if defined(__PGIC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
+# endif
+
+#elif defined(_CRAYC)
+# define COMPILER_ID "Cray"
+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
+
+#elif defined(__TI_COMPILER_VERSION__)
+# define COMPILER_ID "TI"
+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
+
+#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
+# define COMPILER_ID "Fujitsu"
+
+#elif defined(__TINYC__)
+# define COMPILER_ID "TinyCC"
+
+#elif defined(__BCC__)
+# define COMPILER_ID "Bruce"
+
+#elif defined(__SCO_VERSION__)
+# define COMPILER_ID "SCO"
+
+#elif defined(__clang__) && defined(__apple_build_version__)
+# define COMPILER_ID "AppleClang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
+
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+
+#elif defined(__GNUC__)
+# define COMPILER_ID "GNU"
+# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
+# if defined(__GNUC_MINOR__)
+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(_MSC_VER)
+# define COMPILER_ID "MSVC"
+ /* _MSC_VER = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
+# if defined(_MSC_FULL_VER)
+# if _MSC_VER >= 1400
+ /* _MSC_FULL_VER = VVRRPPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
+# else
+ /* _MSC_FULL_VER = VVRRPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
+# endif
+# endif
+# if defined(_MSC_BUILD)
+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
+# endif
+
+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
+# define COMPILER_ID "ADSP"
+#if defined(__VISUALDSPVERSION__)
+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
+#endif
+
+#elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC)
+# define COMPILER_ID "IAR"
+
+#elif defined(__ARMCC_VERSION)
+# define COMPILER_ID "ARMCC"
+#if __ARMCC_VERSION >= 1000000
+ /* __ARMCC_VERSION = VRRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#else
+ /* __ARMCC_VERSION = VRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#endif
+
+
+#elif defined(SDCC)
+# define COMPILER_ID "SDCC"
+ /* SDCC = VRP */
+# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
+# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
+
+#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
+# define COMPILER_ID "MIPSpro"
+# if defined(_SGI_COMPILER_VERSION)
+ /* _SGI_COMPILER_VERSION = VRP */
+# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
+# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
+# else
+ /* _COMPILER_VERSION = VRP */
+# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
+# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
+# endif
+
+
+/* These compilers are either not known or too old to define an
+ identification macro. Try to identify the platform and guess that
+ it is the native compiler. */
+#elif defined(__sgi)
+# define COMPILER_ID "MIPSpro"
+
+#elif defined(__hpux) || defined(__hpua)
+# define COMPILER_ID "HP"
+
+#else /* unknown compiler */
+# define COMPILER_ID ""
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
+#ifdef SIMULATE_ID
+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
+#endif
+
+#ifdef __QNXNTO__
+char const* qnxnto = "INFO" ":" "qnxnto[]";
+#endif
+
+#if defined(__CRAYXE) || defined(__CRAYXC)
+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
+#endif
+
+#define STRINGIFY_HELPER(X) #X
+#define STRINGIFY(X) STRINGIFY_HELPER(X)
+
+/* Identify known platforms by name. */
+#if defined(__linux) || defined(__linux__) || defined(linux)
+# define PLATFORM_ID "Linux"
+
+#elif defined(__CYGWIN__)
+# define PLATFORM_ID "Cygwin"
+
+#elif defined(__MINGW32__)
+# define PLATFORM_ID "MinGW"
+
+#elif defined(__APPLE__)
+# define PLATFORM_ID "Darwin"
+
+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+# define PLATFORM_ID "Windows"
+
+#elif defined(__FreeBSD__) || defined(__FreeBSD)
+# define PLATFORM_ID "FreeBSD"
+
+#elif defined(__NetBSD__) || defined(__NetBSD)
+# define PLATFORM_ID "NetBSD"
+
+#elif defined(__OpenBSD__) || defined(__OPENBSD)
+# define PLATFORM_ID "OpenBSD"
+
+#elif defined(__sun) || defined(sun)
+# define PLATFORM_ID "SunOS"
+
+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
+# define PLATFORM_ID "AIX"
+
+#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
+# define PLATFORM_ID "IRIX"
+
+#elif defined(__hpux) || defined(__hpux__)
+# define PLATFORM_ID "HP-UX"
+
+#elif defined(__HAIKU__)
+# define PLATFORM_ID "Haiku"
+
+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
+# define PLATFORM_ID "BeOS"
+
+#elif defined(__QNX__) || defined(__QNXNTO__)
+# define PLATFORM_ID "QNX"
+
+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
+# define PLATFORM_ID "Tru64"
+
+#elif defined(__riscos) || defined(__riscos__)
+# define PLATFORM_ID "RISCos"
+
+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
+# define PLATFORM_ID "SINIX"
+
+#elif defined(__UNIX_SV__)
+# define PLATFORM_ID "UNIX_SV"
+
+#elif defined(__bsdos__)
+# define PLATFORM_ID "BSDOS"
+
+#elif defined(_MPRAS) || defined(MPRAS)
+# define PLATFORM_ID "MP-RAS"
+
+#elif defined(__osf) || defined(__osf__)
+# define PLATFORM_ID "OSF1"
+
+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
+# define PLATFORM_ID "SCO_SV"
+
+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
+# define PLATFORM_ID "ULTRIX"
+
+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
+# define PLATFORM_ID "Xenix"
+
+#elif defined(__WATCOMC__)
+# if defined(__LINUX__)
+# define PLATFORM_ID "Linux"
+
+# elif defined(__DOS__)
+# define PLATFORM_ID "DOS"
+
+# elif defined(__OS2__)
+# define PLATFORM_ID "OS2"
+
+# elif defined(__WINDOWS__)
+# define PLATFORM_ID "Windows3x"
+
+# else /* unknown platform */
+# define PLATFORM_ID
+# endif
+
+#else /* unknown platform */
+# define PLATFORM_ID
+
+#endif
+
+/* For windows compilers MSVC and Intel we can determine
+ the architecture of the compiler being used. This is because
+ the compilers do not have flags that can change the architecture,
+ but rather depend on which compiler is being used
+*/
+#if defined(_WIN32) && defined(_MSC_VER)
+# if defined(_M_IA64)
+# define ARCHITECTURE_ID "IA64"
+
+# elif defined(_M_X64) || defined(_M_AMD64)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# elif defined(_M_ARM)
+# if _M_ARM == 4
+# define ARCHITECTURE_ID "ARMV4I"
+# elif _M_ARM == 5
+# define ARCHITECTURE_ID "ARMV5I"
+# else
+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
+# endif
+
+# elif defined(_M_MIPS)
+# define ARCHITECTURE_ID "MIPS"
+
+# elif defined(_M_SH)
+# define ARCHITECTURE_ID "SHx"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__WATCOMC__)
+# if defined(_M_I86)
+# define ARCHITECTURE_ID "I86"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#else
+# define ARCHITECTURE_ID
+#endif
+
+/* Convert integer to decimal digit literals. */
+#define DEC(n) \
+ ('0' + (((n) / 10000000)%10)), \
+ ('0' + (((n) / 1000000)%10)), \
+ ('0' + (((n) / 100000)%10)), \
+ ('0' + (((n) / 10000)%10)), \
+ ('0' + (((n) / 1000)%10)), \
+ ('0' + (((n) / 100)%10)), \
+ ('0' + (((n) / 10)%10)), \
+ ('0' + ((n) % 10))
+
+/* Convert integer to hex digit literals. */
+#define HEX(n) \
+ ('0' + ((n)>>28 & 0xF)), \
+ ('0' + ((n)>>24 & 0xF)), \
+ ('0' + ((n)>>20 & 0xF)), \
+ ('0' + ((n)>>16 & 0xF)), \
+ ('0' + ((n)>>12 & 0xF)), \
+ ('0' + ((n)>>8 & 0xF)), \
+ ('0' + ((n)>>4 & 0xF)), \
+ ('0' + ((n) & 0xF))
+
+/* Construct a string literal encoding the version number components. */
+#ifdef COMPILER_VERSION_MAJOR
+char const info_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
+ COMPILER_VERSION_MAJOR,
+# ifdef COMPILER_VERSION_MINOR
+ '.', COMPILER_VERSION_MINOR,
+# ifdef COMPILER_VERSION_PATCH
+ '.', COMPILER_VERSION_PATCH,
+# ifdef COMPILER_VERSION_TWEAK
+ '.', COMPILER_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct a string literal encoding the version number components. */
+#ifdef SIMULATE_VERSION_MAJOR
+char const info_simulate_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
+ SIMULATE_VERSION_MAJOR,
+# ifdef SIMULATE_VERSION_MINOR
+ '.', SIMULATE_VERSION_MINOR,
+# ifdef SIMULATE_VERSION_PATCH
+ '.', SIMULATE_VERSION_PATCH,
+# ifdef SIMULATE_VERSION_TWEAK
+ '.', SIMULATE_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
+
+
+
+
+#if !defined(__STDC__)
+# if defined(_MSC_VER) && !defined(__clang__)
+# define C_DIALECT "90"
+# else
+# define C_DIALECT
+# endif
+#elif __STDC_VERSION__ >= 201000L
+# define C_DIALECT "11"
+#elif __STDC_VERSION__ >= 199901L
+# define C_DIALECT "99"
+#else
+# define C_DIALECT "90"
+#endif
+const char* info_language_dialect_default =
+ "INFO" ":" "dialect_default[" C_DIALECT "]";
+
+/*--------------------------------------------------------------------------*/
+
+#ifdef ID_VOID_MAIN
+void main() {}
+#else
+# if defined(__CLASSIC_C__)
+int main(argc, argv) int argc; char *argv[];
+# else
+int main(int argc, char* argv[])
+# endif
+{
+ int require = 0;
+ require += info_compiler[argc];
+ require += info_platform[argc];
+ require += info_arch[argc];
+#ifdef COMPILER_VERSION_MAJOR
+ require += info_version[argc];
+#endif
+#ifdef SIMULATE_ID
+ require += info_simulate[argc];
+#endif
+#ifdef SIMULATE_VERSION_MAJOR
+ require += info_simulate_version[argc];
+#endif
+#if defined(__CRAYXE) || defined(__CRAYXC)
+ require += info_cray[argc];
+#endif
+ require += info_language_dialect_default[argc];
+ (void)argv;
+ return require;
+}
+#endif
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/CompilerIdC.exe b/build/CMakeFiles/3.6.1/CompilerIdC/CompilerIdC.exe
new file mode 100644
index 0000000..c3cd7ec
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/CompilerIdC.exe differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/CompilerIdC.vcxproj b/build/CMakeFiles/3.6.1/CompilerIdC/CompilerIdC.vcxproj
new file mode 100644
index 0000000..2f62c90
--- /dev/null
+++ b/build/CMakeFiles/3.6.1/CompilerIdC/CompilerIdC.vcxproj
@@ -0,0 +1,56 @@
+
+
+
+
+ Debug
+ x64
+
+
+
+ {CAE07175-D007-4FC3-BFE8-47B392814159}
+ CompilerIdC
+ Win32Proj
+
+
+
+
+
+
+
+ Application
+ v120
+ MultiByte
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\
+ $(Configuration)\
+ false
+
+
+
+ Disabled
+ %(PreprocessorDefinitions)
+ false
+ EnableFastChecks
+ MultiThreadedDebugDLL
+
+
+ TurnOffAllWarnings
+
+
+
+
+ false
+ Console
+
+
+ for %%i in (cl.exe) do %40echo CMAKE_C_COMPILER=%%~$PATH:i
+
+
+
+
+
+
+
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CMakeCCompilerId.obj b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CMakeCCompilerId.obj
new file mode 100644
index 0000000..a77432a
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CMakeCCompilerId.obj differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..a332f3f
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..13d0e70
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate
new file mode 100644
index 0000000..62514c6
--- /dev/null
+++ b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
+Debug|x64|C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CompilerIdC\|
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/cl.command.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/cl.command.1.tlog
new file mode 100644
index 0000000..8cbff38
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/cl.command.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.1.tlog
new file mode 100644
index 0000000..8f3849b
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.13.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.13.tlog
new file mode 100644
index 0000000..dcf327d
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.13.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.44.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.44.tlog
new file mode 100644
index 0000000..04fb43e
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.44.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.59.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.59.tlog
new file mode 100644
index 0000000..7463b9b
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.59.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.71.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.71.tlog
new file mode 100644
index 0000000..f7e52a8
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.delete.71.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.1.tlog
new file mode 100644
index 0000000..3845927
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.11.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.11.tlog
new file mode 100644
index 0000000..24904b4
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.11.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.13.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.13.tlog
new file mode 100644
index 0000000..94c95af
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.13.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.14.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.14.tlog
new file mode 100644
index 0000000..a219464
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.14.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.24.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.24.tlog
new file mode 100644
index 0000000..53044c2
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.24.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.25.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.25.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.25.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.26.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.26.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.26.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.27.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.27.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.27.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.34.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.34.tlog
new file mode 100644
index 0000000..1ca518b
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.34.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.44.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.44.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.44.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.59.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.59.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.59.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.7.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.7.tlog
new file mode 100644
index 0000000..66c639a
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.7.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.71.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.71.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.71.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.9.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.9.tlog
new file mode 100644
index 0000000..3cde9a9
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.read.9.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.1.tlog
new file mode 100644
index 0000000..60eb418
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.13.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.13.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.13.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.24.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.24.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.24.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.34.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.34.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.34.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.44.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.44.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.44.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.59.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.59.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.59.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.71.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.71.tlog
new file mode 100644
index 0000000..db3ce07
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link-VCTIP.write.71.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog
new file mode 100644
index 0000000..388e239
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog
new file mode 100644
index 0000000..5ba61e5
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog
new file mode 100644
index 0000000..b5a06fa
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.6.1/CompilerIdCXX/CMakeCXXCompilerId.cpp
new file mode 100644
index 0000000..a6e6bed
--- /dev/null
+++ b/build/CMakeFiles/3.6.1/CompilerIdCXX/CMakeCXXCompilerId.cpp
@@ -0,0 +1,533 @@
+/* This source file must have a .cpp extension so that all C++ compilers
+ recognize the extension without flags. Borland does not know .cxx for
+ example. */
+#ifndef __cplusplus
+# error "A C compiler has been selected for C++."
+#endif
+
+
+/* Version number components: V=Version, R=Revision, P=Patch
+ Version date components: YYYY=Year, MM=Month, DD=Day */
+
+#if defined(__COMO__)
+# define COMPILER_ID "Comeau"
+ /* __COMO_VERSION__ = VRR */
+# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
+# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
+
+#elif defined(__INTEL_COMPILER) || defined(__ICC)
+# define COMPILER_ID "Intel"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+ /* __INTEL_COMPILER = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
+# if defined(__INTEL_COMPILER_UPDATE)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
+# else
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
+# endif
+# if defined(__INTEL_COMPILER_BUILD_DATE)
+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
+# endif
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+
+#elif defined(__PATHCC__)
+# define COMPILER_ID "PathScale"
+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
+# if defined(__PATHCC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
+# endif
+
+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
+# define COMPILER_ID "Embarcadero"
+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
+
+#elif defined(__BORLANDC__)
+# define COMPILER_ID "Borland"
+ /* __BORLANDC__ = 0xVRR */
+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
+
+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
+# define COMPILER_ID "Watcom"
+ /* __WATCOMC__ = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__WATCOMC__)
+# define COMPILER_ID "OpenWatcom"
+ /* __WATCOMC__ = VVRP + 1100 */
+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__SUNPRO_CC)
+# define COMPILER_ID "SunPro"
+# if __SUNPRO_CC >= 0x5100
+ /* __SUNPRO_CC = 0xVRRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# else
+ /* __SUNPRO_CC = 0xVRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# endif
+
+#elif defined(__HP_aCC)
+# define COMPILER_ID "HP"
+ /* __HP_aCC = VVRRPP */
+# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
+# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
+# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
+
+#elif defined(__DECCXX)
+# define COMPILER_ID "Compaq"
+ /* __DECCXX_VER = VVRRTPPPP */
+# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
+# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
+# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
+
+#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
+# define COMPILER_ID "zOS"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
+# define COMPILER_ID "XL"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
+# define COMPILER_ID "VisualAge"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
+# if defined(__PGIC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
+# endif
+
+#elif defined(_CRAYC)
+# define COMPILER_ID "Cray"
+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
+
+#elif defined(__TI_COMPILER_VERSION__)
+# define COMPILER_ID "TI"
+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
+
+#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
+# define COMPILER_ID "Fujitsu"
+
+#elif defined(__SCO_VERSION__)
+# define COMPILER_ID "SCO"
+
+#elif defined(__clang__) && defined(__apple_build_version__)
+# define COMPILER_ID "AppleClang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
+
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+
+#elif defined(__GNUC__)
+# define COMPILER_ID "GNU"
+# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
+# if defined(__GNUC_MINOR__)
+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(_MSC_VER)
+# define COMPILER_ID "MSVC"
+ /* _MSC_VER = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
+# if defined(_MSC_FULL_VER)
+# if _MSC_VER >= 1400
+ /* _MSC_FULL_VER = VVRRPPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
+# else
+ /* _MSC_FULL_VER = VVRRPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
+# endif
+# endif
+# if defined(_MSC_BUILD)
+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
+# endif
+
+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
+# define COMPILER_ID "ADSP"
+#if defined(__VISUALDSPVERSION__)
+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
+#endif
+
+#elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC)
+# define COMPILER_ID "IAR"
+
+#elif defined(__ARMCC_VERSION)
+# define COMPILER_ID "ARMCC"
+#if __ARMCC_VERSION >= 1000000
+ /* __ARMCC_VERSION = VRRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#else
+ /* __ARMCC_VERSION = VRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#endif
+
+
+#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
+# define COMPILER_ID "MIPSpro"
+# if defined(_SGI_COMPILER_VERSION)
+ /* _SGI_COMPILER_VERSION = VRP */
+# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
+# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
+# else
+ /* _COMPILER_VERSION = VRP */
+# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
+# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
+# endif
+
+
+/* These compilers are either not known or too old to define an
+ identification macro. Try to identify the platform and guess that
+ it is the native compiler. */
+#elif defined(__sgi)
+# define COMPILER_ID "MIPSpro"
+
+#elif defined(__hpux) || defined(__hpua)
+# define COMPILER_ID "HP"
+
+#else /* unknown compiler */
+# define COMPILER_ID ""
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
+#ifdef SIMULATE_ID
+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
+#endif
+
+#ifdef __QNXNTO__
+char const* qnxnto = "INFO" ":" "qnxnto[]";
+#endif
+
+#if defined(__CRAYXE) || defined(__CRAYXC)
+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
+#endif
+
+#define STRINGIFY_HELPER(X) #X
+#define STRINGIFY(X) STRINGIFY_HELPER(X)
+
+/* Identify known platforms by name. */
+#if defined(__linux) || defined(__linux__) || defined(linux)
+# define PLATFORM_ID "Linux"
+
+#elif defined(__CYGWIN__)
+# define PLATFORM_ID "Cygwin"
+
+#elif defined(__MINGW32__)
+# define PLATFORM_ID "MinGW"
+
+#elif defined(__APPLE__)
+# define PLATFORM_ID "Darwin"
+
+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+# define PLATFORM_ID "Windows"
+
+#elif defined(__FreeBSD__) || defined(__FreeBSD)
+# define PLATFORM_ID "FreeBSD"
+
+#elif defined(__NetBSD__) || defined(__NetBSD)
+# define PLATFORM_ID "NetBSD"
+
+#elif defined(__OpenBSD__) || defined(__OPENBSD)
+# define PLATFORM_ID "OpenBSD"
+
+#elif defined(__sun) || defined(sun)
+# define PLATFORM_ID "SunOS"
+
+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
+# define PLATFORM_ID "AIX"
+
+#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
+# define PLATFORM_ID "IRIX"
+
+#elif defined(__hpux) || defined(__hpux__)
+# define PLATFORM_ID "HP-UX"
+
+#elif defined(__HAIKU__)
+# define PLATFORM_ID "Haiku"
+
+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
+# define PLATFORM_ID "BeOS"
+
+#elif defined(__QNX__) || defined(__QNXNTO__)
+# define PLATFORM_ID "QNX"
+
+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
+# define PLATFORM_ID "Tru64"
+
+#elif defined(__riscos) || defined(__riscos__)
+# define PLATFORM_ID "RISCos"
+
+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
+# define PLATFORM_ID "SINIX"
+
+#elif defined(__UNIX_SV__)
+# define PLATFORM_ID "UNIX_SV"
+
+#elif defined(__bsdos__)
+# define PLATFORM_ID "BSDOS"
+
+#elif defined(_MPRAS) || defined(MPRAS)
+# define PLATFORM_ID "MP-RAS"
+
+#elif defined(__osf) || defined(__osf__)
+# define PLATFORM_ID "OSF1"
+
+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
+# define PLATFORM_ID "SCO_SV"
+
+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
+# define PLATFORM_ID "ULTRIX"
+
+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
+# define PLATFORM_ID "Xenix"
+
+#elif defined(__WATCOMC__)
+# if defined(__LINUX__)
+# define PLATFORM_ID "Linux"
+
+# elif defined(__DOS__)
+# define PLATFORM_ID "DOS"
+
+# elif defined(__OS2__)
+# define PLATFORM_ID "OS2"
+
+# elif defined(__WINDOWS__)
+# define PLATFORM_ID "Windows3x"
+
+# else /* unknown platform */
+# define PLATFORM_ID
+# endif
+
+#else /* unknown platform */
+# define PLATFORM_ID
+
+#endif
+
+/* For windows compilers MSVC and Intel we can determine
+ the architecture of the compiler being used. This is because
+ the compilers do not have flags that can change the architecture,
+ but rather depend on which compiler is being used
+*/
+#if defined(_WIN32) && defined(_MSC_VER)
+# if defined(_M_IA64)
+# define ARCHITECTURE_ID "IA64"
+
+# elif defined(_M_X64) || defined(_M_AMD64)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# elif defined(_M_ARM)
+# if _M_ARM == 4
+# define ARCHITECTURE_ID "ARMV4I"
+# elif _M_ARM == 5
+# define ARCHITECTURE_ID "ARMV5I"
+# else
+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
+# endif
+
+# elif defined(_M_MIPS)
+# define ARCHITECTURE_ID "MIPS"
+
+# elif defined(_M_SH)
+# define ARCHITECTURE_ID "SHx"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__WATCOMC__)
+# if defined(_M_I86)
+# define ARCHITECTURE_ID "I86"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#else
+# define ARCHITECTURE_ID
+#endif
+
+/* Convert integer to decimal digit literals. */
+#define DEC(n) \
+ ('0' + (((n) / 10000000)%10)), \
+ ('0' + (((n) / 1000000)%10)), \
+ ('0' + (((n) / 100000)%10)), \
+ ('0' + (((n) / 10000)%10)), \
+ ('0' + (((n) / 1000)%10)), \
+ ('0' + (((n) / 100)%10)), \
+ ('0' + (((n) / 10)%10)), \
+ ('0' + ((n) % 10))
+
+/* Convert integer to hex digit literals. */
+#define HEX(n) \
+ ('0' + ((n)>>28 & 0xF)), \
+ ('0' + ((n)>>24 & 0xF)), \
+ ('0' + ((n)>>20 & 0xF)), \
+ ('0' + ((n)>>16 & 0xF)), \
+ ('0' + ((n)>>12 & 0xF)), \
+ ('0' + ((n)>>8 & 0xF)), \
+ ('0' + ((n)>>4 & 0xF)), \
+ ('0' + ((n) & 0xF))
+
+/* Construct a string literal encoding the version number components. */
+#ifdef COMPILER_VERSION_MAJOR
+char const info_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
+ COMPILER_VERSION_MAJOR,
+# ifdef COMPILER_VERSION_MINOR
+ '.', COMPILER_VERSION_MINOR,
+# ifdef COMPILER_VERSION_PATCH
+ '.', COMPILER_VERSION_PATCH,
+# ifdef COMPILER_VERSION_TWEAK
+ '.', COMPILER_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct a string literal encoding the version number components. */
+#ifdef SIMULATE_VERSION_MAJOR
+char const info_simulate_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
+ SIMULATE_VERSION_MAJOR,
+# ifdef SIMULATE_VERSION_MINOR
+ '.', SIMULATE_VERSION_MINOR,
+# ifdef SIMULATE_VERSION_PATCH
+ '.', SIMULATE_VERSION_PATCH,
+# ifdef SIMULATE_VERSION_TWEAK
+ '.', SIMULATE_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
+
+
+
+
+const char* info_language_dialect_default = "INFO" ":" "dialect_default["
+#if __cplusplus >= 201402L
+ "14"
+#elif __cplusplus >= 201103L
+ "11"
+#else
+ "98"
+#endif
+"]";
+
+/*--------------------------------------------------------------------------*/
+
+int main(int argc, char* argv[])
+{
+ int require = 0;
+ require += info_compiler[argc];
+ require += info_platform[argc];
+#ifdef COMPILER_VERSION_MAJOR
+ require += info_version[argc];
+#endif
+#ifdef SIMULATE_ID
+ require += info_simulate[argc];
+#endif
+#ifdef SIMULATE_VERSION_MAJOR
+ require += info_simulate_version[argc];
+#endif
+#if defined(__CRAYXE) || defined(__CRAYXC)
+ require += info_cray[argc];
+#endif
+ require += info_language_dialect_default[argc];
+ (void)argv;
+ return require;
+}
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/CompilerIdCXX.exe b/build/CMakeFiles/3.6.1/CompilerIdCXX/CompilerIdCXX.exe
new file mode 100644
index 0000000..b9a6d67
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdCXX/CompilerIdCXX.exe differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/CompilerIdCXX.vcxproj b/build/CMakeFiles/3.6.1/CompilerIdCXX/CompilerIdCXX.vcxproj
new file mode 100644
index 0000000..d654cfb
--- /dev/null
+++ b/build/CMakeFiles/3.6.1/CompilerIdCXX/CompilerIdCXX.vcxproj
@@ -0,0 +1,56 @@
+
+
+
+
+ Debug
+ x64
+
+
+
+ {CAE07175-D007-4FC3-BFE8-47B392814159}
+ CompilerIdCXX
+ Win32Proj
+
+
+
+
+
+
+
+ Application
+ v120
+ MultiByte
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\
+ $(Configuration)\
+ false
+
+
+
+ Disabled
+ %(PreprocessorDefinitions)
+ false
+ EnableFastChecks
+ MultiThreadedDebugDLL
+
+
+ TurnOffAllWarnings
+
+
+
+
+ false
+ Console
+
+
+ for %%i in (cl.exe) do %40echo CMAKE_CXX_COMPILER=%%~$PATH:i
+
+
+
+
+
+
+
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj
new file mode 100644
index 0000000..600fd28
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..f2931f3
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..4a63513
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate
new file mode 100644
index 0000000..e7b1cbd
--- /dev/null
+++ b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
+Debug|x64|C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CompilerIdCXX\|
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/cl.command.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/cl.command.1.tlog
new file mode 100644
index 0000000..b752068
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/cl.command.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog
new file mode 100644
index 0000000..538369b
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog
new file mode 100644
index 0000000..97fd400
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog differ
diff --git a/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog
new file mode 100644
index 0000000..709c748
Binary files /dev/null and b/build/CMakeFiles/3.6.1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog differ
diff --git a/build/CMakeFiles/CMakeError.log b/build/CMakeFiles/CMakeError.log
new file mode 100644
index 0000000..3c6189f
--- /dev/null
+++ b/build/CMakeFiles/CMakeError.log
@@ -0,0 +1,39 @@
+Determining if the include file pthread.h exists failed with the following output:
+Change Dir: C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp
+
+Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_ade71.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
+Microsoft (R) Build Engine version 12.0.40629.0
+[Microsoft .NET Framework, version 4.0.30319.42000]
+Copyright (C) Microsoft Corporation. All rights reserved.
+
+Build started 9/29/2016 12:01:58 PM.
+Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_ade71.vcxproj" on node 1 (default targets).
+PrepareForBuild:
+ Creating directory "cmTC_ade71.dir\Debug\".
+ Creating directory "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\".
+ Creating directory "cmTC_ade71.dir\Debug\cmTC_ade71.tlog\".
+InitializeBuildStatus:
+ Creating "cmTC_ade71.dir\Debug\cmTC_ade71.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
+ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_ade71.dir\Debug\\" /Fd"cmTC_ade71.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"
+ Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64
+ Copyright (C) Microsoft Corporation. All rights reserved.
+
+ cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_ade71.dir\Debug\\" /Fd"cmTC_ade71.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"
+
+ CheckIncludeFile.c
+C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1): fatal error C1083: Cannot open include file: 'pthread.h': No such file or directory [C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_ade71.vcxproj]
+Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_ade71.vcxproj" (default targets) -- FAILED.
+
+Build FAILED.
+
+"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_ade71.vcxproj" (default target) (1) ->
+(ClCompile target) ->
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1): fatal error C1083: Cannot open include file: 'pthread.h': No such file or directory [C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_ade71.vcxproj]
+
+ 0 Warning(s)
+ 1 Error(s)
+
+Time Elapsed 00:00:00.22
+
+
diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log
new file mode 100644
index 0000000..9a34ee7
--- /dev/null
+++ b/build/CMakeFiles/CMakeOutput.log
@@ -0,0 +1,344 @@
+The system is: Windows - 10.0.14393 - AMD64
+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
+Compiler:
+Build flags:
+Id flags:
+
+The output was:
+0
+Microsoft (R) Build Engine version 12.0.40629.0
+[Microsoft .NET Framework, version 4.0.30319.42000]
+Copyright (C) Microsoft Corporation. All rights reserved.
+
+Build started 9/29/2016 12:01:49 PM.
+Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CompilerIdC\CompilerIdC.vcxproj" on node 1 (default targets).
+PrepareForBuild:
+ Creating directory "Debug\".
+ Creating directory "Debug\CompilerIdC.tlog\".
+InitializeBuildStatus:
+ Creating "Debug\CompilerIdC.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
+ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /nologo /W0 /WX- /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TC /errorReport:queue CMakeCCompilerId.c
+ CMakeCCompilerId.c
+Link:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdC.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdC.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdC.lib" /MACHINE:X64 Debug\CMakeCCompilerId.obj
+ CompilerIdC.vcxproj -> C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CompilerIdC\.\CompilerIdC.exe
+PostBuildEvent:
+ for %%i in (cl.exe) do @echo CMAKE_C_COMPILER=%%~$PATH:i
+ :VCEnd
+ CMAKE_C_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\cl.exe
+FinalizeBuildStatus:
+ Deleting file "Debug\CompilerIdC.tlog\unsuccessfulbuild".
+ Touching "Debug\CompilerIdC.tlog\CompilerIdC.lastbuildstate".
+Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CompilerIdC\CompilerIdC.vcxproj" (default targets).
+
+Build succeeded.
+ 0 Warning(s)
+ 0 Error(s)
+
+Time Elapsed 00:00:00.59
+
+
+Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.exe"
+
+Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.vcxproj"
+
+The C compiler identification is MSVC, found in "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/3.6.1/CompilerIdC/CompilerIdC.exe"
+
+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
+Compiler:
+Build flags:
+Id flags:
+
+The output was:
+0
+Microsoft (R) Build Engine version 12.0.40629.0
+[Microsoft .NET Framework, version 4.0.30319.42000]
+Copyright (C) Microsoft Corporation. All rights reserved.
+
+Build started 9/29/2016 12:01:51 PM.
+Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CompilerIdCXX\CompilerIdCXX.vcxproj" on node 1 (default targets).
+PrepareForBuild:
+ Creating directory "Debug\".
+ Creating directory "Debug\CompilerIdCXX.tlog\".
+InitializeBuildStatus:
+ Creating "Debug\CompilerIdCXX.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
+ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /nologo /W0 /WX- /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /errorReport:queue CMakeCXXCompilerId.cpp
+ CMakeCXXCompilerId.cpp
+Link:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdCXX.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdCXX.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdCXX.lib" /MACHINE:X64 Debug\CMakeCXXCompilerId.obj
+ CompilerIdCXX.vcxproj -> C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CompilerIdCXX\.\CompilerIdCXX.exe
+PostBuildEvent:
+ for %%i in (cl.exe) do @echo CMAKE_CXX_COMPILER=%%~$PATH:i
+ :VCEnd
+ CMAKE_CXX_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\cl.exe
+FinalizeBuildStatus:
+ Deleting file "Debug\CompilerIdCXX.tlog\unsuccessfulbuild".
+ Touching "Debug\CompilerIdCXX.tlog\CompilerIdCXX.lastbuildstate".
+Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CompilerIdCXX\CompilerIdCXX.vcxproj" (default targets).
+
+Build succeeded.
+ 0 Warning(s)
+ 0 Error(s)
+
+Time Elapsed 00:00:00.37
+
+
+Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.exe"
+
+Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.vcxproj"
+
+The CXX compiler identification is MSVC, found in "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/3.6.1/CompilerIdCXX/CompilerIdCXX.exe"
+
+Determining if the C compiler works passed with the following output:
+Change Dir: C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp
+
+Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_33c82.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
+Microsoft (R) Build Engine version 12.0.40629.0
+[Microsoft .NET Framework, version 4.0.30319.42000]
+Copyright (C) Microsoft Corporation. All rights reserved.
+
+Build started 9/29/2016 12:01:55 PM.
+Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_33c82.vcxproj" on node 1 (default targets).
+PrepareForBuild:
+ Creating directory "cmTC_33c82.dir\Debug\".
+ Creating directory "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\".
+ Creating directory "cmTC_33c82.dir\Debug\cmTC_33c82.tlog\".
+InitializeBuildStatus:
+ Creating "cmTC_33c82.dir\Debug\cmTC_33c82.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
+ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_33c82.dir\Debug\\" /Fd"cmTC_33c82.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\testCCompiler.c"
+ Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64
+ Copyright (C) Microsoft Corporation. All rights reserved.
+
+ cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_33c82.dir\Debug\\" /Fd"cmTC_33c82.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\testCCompiler.c"
+
+ testCCompiler.c
+Link:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\cmTC_33c82.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp/Debug/cmTC_33c82.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp/Debug/cmTC_33c82.lib" /MACHINE:X64 /machine:x64 cmTC_33c82.dir\Debug\testCCompiler.obj
+ cmTC_33c82.vcxproj -> C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\cmTC_33c82.exe
+FinalizeBuildStatus:
+ Deleting file "cmTC_33c82.dir\Debug\cmTC_33c82.tlog\unsuccessfulbuild".
+ Touching "cmTC_33c82.dir\Debug\cmTC_33c82.tlog\cmTC_33c82.lastbuildstate".
+Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_33c82.vcxproj" (default targets).
+
+Build succeeded.
+ 0 Warning(s)
+ 0 Error(s)
+
+Time Elapsed 00:00:00.70
+
+
+Detecting C compiler ABI info compiled with the following output:
+Change Dir: C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp
+
+Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_30ec8.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
+Microsoft (R) Build Engine version 12.0.40629.0
+[Microsoft .NET Framework, version 4.0.30319.42000]
+Copyright (C) Microsoft Corporation. All rights reserved.
+
+Build started 9/29/2016 12:01:56 PM.
+Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_30ec8.vcxproj" on node 1 (default targets).
+PrepareForBuild:
+ Creating directory "cmTC_30ec8.dir\Debug\".
+ Creating directory "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\".
+ Creating directory "cmTC_30ec8.dir\Debug\cmTC_30ec8.tlog\".
+InitializeBuildStatus:
+ Creating "cmTC_30ec8.dir\Debug\cmTC_30ec8.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
+ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_30ec8.dir\Debug\\" /Fd"cmTC_30ec8.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCCompilerABI.c"
+ Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64
+ Copyright (C) Microsoft Corporation. All rights reserved.
+
+ cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_30ec8.dir\Debug\\" /Fd"cmTC_30ec8.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCCompilerABI.c"
+
+ CMakeCCompilerABI.c
+Link:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\cmTC_30ec8.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp/Debug/cmTC_30ec8.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp/Debug/cmTC_30ec8.lib" /MACHINE:X64 /machine:x64 cmTC_30ec8.dir\Debug\CMakeCCompilerABI.obj
+ cmTC_30ec8.vcxproj -> C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\cmTC_30ec8.exe
+FinalizeBuildStatus:
+ Deleting file "cmTC_30ec8.dir\Debug\cmTC_30ec8.tlog\unsuccessfulbuild".
+ Touching "cmTC_30ec8.dir\Debug\cmTC_30ec8.tlog\cmTC_30ec8.lastbuildstate".
+Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_30ec8.vcxproj" (default targets).
+
+Build succeeded.
+ 0 Warning(s)
+ 0 Error(s)
+
+Time Elapsed 00:00:00.43
+
+
+Determining if the CXX compiler works passed with the following output:
+Change Dir: C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp
+
+Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_6b3cf.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
+Microsoft (R) Build Engine version 12.0.40629.0
+[Microsoft .NET Framework, version 4.0.30319.42000]
+Copyright (C) Microsoft Corporation. All rights reserved.
+
+Build started 9/29/2016 12:01:56 PM.
+Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_6b3cf.vcxproj" on node 1 (default targets).
+PrepareForBuild:
+ Creating directory "cmTC_6b3cf.dir\Debug\".
+ Creating directory "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\".
+ Creating directory "cmTC_6b3cf.dir\Debug\cmTC_6b3cf.tlog\".
+InitializeBuildStatus:
+ Creating "cmTC_6b3cf.dir\Debug\cmTC_6b3cf.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
+ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_6b3cf.dir\Debug\\" /Fd"cmTC_6b3cf.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\testCXXCompiler.cxx"
+ Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64
+ Copyright (C) Microsoft Corporation. All rights reserved.
+
+ cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_6b3cf.dir\Debug\\" /Fd"cmTC_6b3cf.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\testCXXCompiler.cxx"
+
+ testCXXCompiler.cxx
+Link:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\cmTC_6b3cf.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp/Debug/cmTC_6b3cf.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp/Debug/cmTC_6b3cf.lib" /MACHINE:X64 /machine:x64 cmTC_6b3cf.dir\Debug\testCXXCompiler.obj
+ cmTC_6b3cf.vcxproj -> C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\cmTC_6b3cf.exe
+FinalizeBuildStatus:
+ Deleting file "cmTC_6b3cf.dir\Debug\cmTC_6b3cf.tlog\unsuccessfulbuild".
+ Touching "cmTC_6b3cf.dir\Debug\cmTC_6b3cf.tlog\cmTC_6b3cf.lastbuildstate".
+Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_6b3cf.vcxproj" (default targets).
+
+Build succeeded.
+ 0 Warning(s)
+ 0 Error(s)
+
+Time Elapsed 00:00:00.45
+
+
+Detecting CXX compiler ABI info compiled with the following output:
+Change Dir: C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp
+
+Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_ac134.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
+Microsoft (R) Build Engine version 12.0.40629.0
+[Microsoft .NET Framework, version 4.0.30319.42000]
+Copyright (C) Microsoft Corporation. All rights reserved.
+
+Build started 9/29/2016 12:01:57 PM.
+Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_ac134.vcxproj" on node 1 (default targets).
+PrepareForBuild:
+ Creating directory "cmTC_ac134.dir\Debug\".
+ Creating directory "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\".
+ Creating directory "cmTC_ac134.dir\Debug\cmTC_ac134.tlog\".
+InitializeBuildStatus:
+ Creating "cmTC_ac134.dir\Debug\cmTC_ac134.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
+ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_ac134.dir\Debug\\" /Fd"cmTC_ac134.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXCompilerABI.cpp"
+ Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64
+ Copyright (C) Microsoft Corporation. All rights reserved.
+
+ cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_ac134.dir\Debug\\" /Fd"cmTC_ac134.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXCompilerABI.cpp"
+
+ CMakeCXXCompilerABI.cpp
+Link:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\cmTC_ac134.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp/Debug/cmTC_ac134.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp/Debug/cmTC_ac134.lib" /MACHINE:X64 /machine:x64 cmTC_ac134.dir\Debug\CMakeCXXCompilerABI.obj
+ cmTC_ac134.vcxproj -> C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\cmTC_ac134.exe
+FinalizeBuildStatus:
+ Deleting file "cmTC_ac134.dir\Debug\cmTC_ac134.tlog\unsuccessfulbuild".
+ Touching "cmTC_ac134.dir\Debug\cmTC_ac134.tlog\cmTC_ac134.lastbuildstate".
+Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_ac134.vcxproj" (default targets).
+
+Build succeeded.
+ 0 Warning(s)
+ 0 Error(s)
+
+Time Elapsed 00:00:00.45
+
+
+
+
+Detecting CXX [] compiler features compiled with the following output:
+Change Dir: C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp
+
+Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_de2ff.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
+Microsoft (R) Build Engine version 12.0.40629.0
+[Microsoft .NET Framework, version 4.0.30319.42000]
+Copyright (C) Microsoft Corporation. All rights reserved.
+
+Build started 9/29/2016 12:01:58 PM.
+Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_de2ff.vcxproj" on node 1 (default targets).
+PrepareForBuild:
+ Creating directory "cmTC_de2ff.dir\Debug\".
+ Creating directory "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\".
+ Creating directory "cmTC_de2ff.dir\Debug\cmTC_de2ff.tlog\".
+InitializeBuildStatus:
+ Creating "cmTC_de2ff.dir\Debug\cmTC_de2ff.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
+ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_de2ff.dir\Debug\\" /Fd"cmTC_de2ff.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\feature_tests.cxx"
+ Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64
+ Copyright (C) Microsoft Corporation. All rights reserved.
+
+ cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_de2ff.dir\Debug\\" /Fd"cmTC_de2ff.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\feature_tests.cxx"
+
+ feature_tests.cxx
+Link:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\cmTC_de2ff.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp/Debug/cmTC_de2ff.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/CMakeTmp/Debug/cmTC_de2ff.lib" /MACHINE:X64 /machine:x64 cmTC_de2ff.dir\Debug\feature_tests.obj
+ cmTC_de2ff.vcxproj -> C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\Debug\cmTC_de2ff.exe
+FinalizeBuildStatus:
+ Deleting file "cmTC_de2ff.dir\Debug\cmTC_de2ff.tlog\unsuccessfulbuild".
+ Touching "cmTC_de2ff.dir\Debug\cmTC_de2ff.tlog\cmTC_de2ff.lastbuildstate".
+Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\CMakeTmp\cmTC_de2ff.vcxproj" (default targets).
+
+Build succeeded.
+ 0 Warning(s)
+ 0 Error(s)
+
+Time Elapsed 00:00:00.42
+
+
+ Feature record: CXX_FEATURE:1cxx_alias_templates
+ Feature record: CXX_FEATURE:0cxx_alignas
+ Feature record: CXX_FEATURE:0cxx_alignof
+ Feature record: CXX_FEATURE:0cxx_attributes
+ Feature record: CXX_FEATURE:0cxx_attribute_deprecated
+ Feature record: CXX_FEATURE:1cxx_auto_type
+ Feature record: CXX_FEATURE:0cxx_binary_literals
+ Feature record: CXX_FEATURE:0cxx_constexpr
+ Feature record: CXX_FEATURE:1cxx_contextual_conversions
+ Feature record: CXX_FEATURE:1cxx_decltype
+ Feature record: CXX_FEATURE:0cxx_decltype_auto
+ Feature record: CXX_FEATURE:1cxx_default_function_template_args
+ Feature record: CXX_FEATURE:1cxx_defaulted_functions
+ Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
+ Feature record: CXX_FEATURE:1cxx_delegating_constructors
+ Feature record: CXX_FEATURE:0cxx_deleted_functions
+ Feature record: CXX_FEATURE:0cxx_digit_separators
+ Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
+ Feature record: CXX_FEATURE:1cxx_explicit_conversions
+ Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
+ Feature record: CXX_FEATURE:1cxx_extern_templates
+ Feature record: CXX_FEATURE:1cxx_final
+ Feature record: CXX_FEATURE:0cxx_func_identifier
+ Feature record: CXX_FEATURE:1cxx_generalized_initializers
+ Feature record: CXX_FEATURE:0cxx_generic_lambdas
+ Feature record: CXX_FEATURE:0cxx_inheriting_constructors
+ Feature record: CXX_FEATURE:0cxx_inline_namespaces
+ Feature record: CXX_FEATURE:1cxx_lambdas
+ Feature record: CXX_FEATURE:0cxx_lambda_init_captures
+ Feature record: CXX_FEATURE:1cxx_local_type_template_args
+ Feature record: CXX_FEATURE:1cxx_long_long_type
+ Feature record: CXX_FEATURE:0cxx_noexcept
+ Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
+ Feature record: CXX_FEATURE:1cxx_nullptr
+ Feature record: CXX_FEATURE:1cxx_override
+ Feature record: CXX_FEATURE:1cxx_range_for
+ Feature record: CXX_FEATURE:1cxx_raw_string_literals
+ Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
+ Feature record: CXX_FEATURE:0cxx_return_type_deduction
+ Feature record: CXX_FEATURE:1cxx_right_angle_brackets
+ Feature record: CXX_FEATURE:1cxx_rvalue_references
+ Feature record: CXX_FEATURE:0cxx_sizeof_member
+ Feature record: CXX_FEATURE:1cxx_static_assert
+ Feature record: CXX_FEATURE:1cxx_strong_enums
+ Feature record: CXX_FEATURE:1cxx_template_template_parameters
+ Feature record: CXX_FEATURE:0cxx_thread_local
+ Feature record: CXX_FEATURE:1cxx_trailing_return_types
+ Feature record: CXX_FEATURE:0cxx_unicode_literals
+ Feature record: CXX_FEATURE:1cxx_uniform_initialization
+ Feature record: CXX_FEATURE:0cxx_unrestricted_unions
+ Feature record: CXX_FEATURE:0cxx_user_literals
+ Feature record: CXX_FEATURE:0cxx_variable_templates
+ Feature record: CXX_FEATURE:1cxx_variadic_macros
+ Feature record: CXX_FEATURE:1cxx_variadic_templates
diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt
new file mode 100644
index 0000000..d3837e6
--- /dev/null
+++ b/build/CMakeFiles/TargetDirectories.txt
@@ -0,0 +1,4 @@
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/cis565_path_tracer.dir
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/ALL_BUILD.dir
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/ZERO_CHECK.dir
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir
diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache
new file mode 100644
index 0000000..3dccd73
--- /dev/null
+++ b/build/CMakeFiles/cmake.check_cache
@@ -0,0 +1 @@
+# This file is generated by cmake for dependency checking of the CMakeCache.txt file
diff --git a/build/CMakeFiles/feature_tests.bin b/build/CMakeFiles/feature_tests.bin
new file mode 100644
index 0000000..856fbc3
Binary files /dev/null and b/build/CMakeFiles/feature_tests.bin differ
diff --git a/build/CMakeFiles/feature_tests.cxx b/build/CMakeFiles/feature_tests.cxx
new file mode 100644
index 0000000..4c5ba2c
--- /dev/null
+++ b/build/CMakeFiles/feature_tests.cxx
@@ -0,0 +1,384 @@
+
+ const char features[] = {"\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1800
+"1"
+#else
+"0"
+#endif
+"cxx_alias_templates\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_alignas\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_alignof\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_attributes\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_attribute_deprecated\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_auto_type\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_binary_literals\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_constexpr\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1800
+"1"
+#else
+"0"
+#endif
+"cxx_contextual_conversions\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_decltype\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_decltype_auto\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1800
+"1"
+#else
+"0"
+#endif
+"cxx_default_function_template_args\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1800
+"1"
+#else
+"0"
+#endif
+"cxx_defaulted_functions\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_defaulted_move_initializers\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1800
+"1"
+#else
+"0"
+#endif
+"cxx_delegating_constructors\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_deleted_functions\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_digit_separators\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1700
+"1"
+#else
+"0"
+#endif
+"cxx_enum_forward_declarations\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1800
+"1"
+#else
+"0"
+#endif
+"cxx_explicit_conversions\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_extended_friend_declarations\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_extern_templates\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1700
+"1"
+#else
+"0"
+#endif
+"cxx_final\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_func_identifier\n"
+"CXX_FEATURE:"
+#if _MSC_FULL_VER >= 180030723
+"1"
+#else
+"0"
+#endif
+"cxx_generalized_initializers\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_generic_lambdas\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_inheriting_constructors\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_inline_namespaces\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_lambdas\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_lambda_init_captures\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_local_type_template_args\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_long_long_type\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_noexcept\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_nonstatic_member_init\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_nullptr\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_override\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1700
+"1"
+#else
+"0"
+#endif
+"cxx_range_for\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1800
+"1"
+#else
+"0"
+#endif
+"cxx_raw_string_literals\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_reference_qualified_functions\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_return_type_deduction\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_right_angle_brackets\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_rvalue_references\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_sizeof_member\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_static_assert\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1700
+"1"
+#else
+"0"
+#endif
+"cxx_strong_enums\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_template_template_parameters\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_thread_local\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_trailing_return_types\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_unicode_literals\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1800
+"1"
+#else
+"0"
+#endif
+"cxx_uniform_initialization\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_unrestricted_unions\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1900
+"1"
+#else
+"0"
+#endif
+"cxx_user_literals\n"
+"CXX_FEATURE:"
+#if _MSC_FULL_VER >= 190023918
+"1"
+#else
+"0"
+#endif
+"cxx_variable_templates\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1600
+"1"
+#else
+"0"
+#endif
+"cxx_variadic_macros\n"
+"CXX_FEATURE:"
+#if _MSC_VER >= 1800
+"1"
+#else
+"0"
+#endif
+"cxx_variadic_templates\n"
+
+};
+
+int main(int argc, char** argv) { (void)argv; return features[argc]; }
diff --git a/build/CMakeFiles/generate.stamp b/build/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/build/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/build/CMakeFiles/generate.stamp.depend b/build/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..2030e12
--- /dev/null
+++ b/build/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,42 @@
+# CMake generation dependency list for this directory.
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/3.6.1/CMakeSystem.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeSystemSpecificInitialize.cmake
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/3.6.1/CMakeCCompiler.cmake
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/3.6.1/CMakeCXXCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeSystemSpecificInformation.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeGenericSystem.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/Platform/Windows.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/Platform/WindowsPaths.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeCInformation.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeLanguageInformation.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/Platform/Windows-MSVC-C.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/Platform/Windows-MSVC.cmake
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/3.6.1/CMakeRCCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeRCInformation.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeCommonLanguageInclude.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeCXXInformation.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeLanguageInformation.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/Compiler/MSVC-CXX.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/Platform/Windows-MSVC-CXX.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/Platform/Windows-MSVC.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeCommonLanguageInclude.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/FindGLEW.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/FindPackageHandleStandardArgs.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/FindPackageMessage.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeParseArguments.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/FindOpenGL.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/FindPackageHandleStandardArgs.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/FindPackageMessage.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeParseArguments.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/FindThreads.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CheckLibraryExists.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CheckSymbolExists.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CheckIncludeFile.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/FindPackageHandleStandardArgs.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/FindPackageMessage.cmake
+C:/Program Files/CMake/share/cmake-3.6/Modules/CMakeParseArguments.cmake
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/cmake/FindCUDA.cmake
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/cmake/FindPackageHandleStandardArgs.cmake
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/cmake/FindPackageMessage.cmake
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/cmake/CMakeParseArguments.cmake
diff --git a/build/CMakeFiles/generate.stamp.list b/build/CMakeFiles/generate.stamp.list
new file mode 100644
index 0000000..9b6d974
--- /dev/null
+++ b/build/CMakeFiles/generate.stamp.list
@@ -0,0 +1,2 @@
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/generate.stamp
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/generate.stamp
diff --git a/build/Debug/cis565_path_tracer.exe b/build/Debug/cis565_path_tracer.exe
new file mode 100644
index 0000000..852b0f1
Binary files /dev/null and b/build/Debug/cis565_path_tracer.exe differ
diff --git a/build/Debug/cis565_path_tracer.exp b/build/Debug/cis565_path_tracer.exp
new file mode 100644
index 0000000..8e2a49a
Binary files /dev/null and b/build/Debug/cis565_path_tracer.exp differ
diff --git a/build/Debug/cis565_path_tracer.ilk b/build/Debug/cis565_path_tracer.ilk
new file mode 100644
index 0000000..1eebaf2
Binary files /dev/null and b/build/Debug/cis565_path_tracer.ilk differ
diff --git a/build/Debug/cis565_path_tracer.lib b/build/Debug/cis565_path_tracer.lib
new file mode 100644
index 0000000..974a859
Binary files /dev/null and b/build/Debug/cis565_path_tracer.lib differ
diff --git a/build/Debug/cis565_path_tracer.pdb b/build/Debug/cis565_path_tracer.pdb
new file mode 100644
index 0000000..5961a6e
Binary files /dev/null and b/build/Debug/cis565_path_tracer.pdb differ
diff --git a/build/Debug/cis565_path_tracer.v12.suo b/build/Debug/cis565_path_tracer.v12.suo
new file mode 100644
index 0000000..f76fa64
Binary files /dev/null and b/build/Debug/cis565_path_tracer.v12.suo differ
diff --git a/build/Release/cis565_path_tracer.exe b/build/Release/cis565_path_tracer.exe
new file mode 100644
index 0000000..9575ab9
Binary files /dev/null and b/build/Release/cis565_path_tracer.exe differ
diff --git a/build/Release/cis565_path_tracer.exp b/build/Release/cis565_path_tracer.exp
new file mode 100644
index 0000000..6757503
Binary files /dev/null and b/build/Release/cis565_path_tracer.exp differ
diff --git a/build/Release/cis565_path_tracer.lib b/build/Release/cis565_path_tracer.lib
new file mode 100644
index 0000000..abe0822
Binary files /dev/null and b/build/Release/cis565_path_tracer.lib differ
diff --git a/build/ZERO_CHECK.vcxproj b/build/ZERO_CHECK.vcxproj
new file mode 100644
index 0000000..a6e8caf
--- /dev/null
+++ b/build/ZERO_CHECK.vcxproj
@@ -0,0 +1,169 @@
+
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}
+ Win32Proj
+ x64
+ ZERO_CHECK
+
+
+
+ Utility
+ false
+ MultiByte
+ v120
+
+
+ Utility
+ false
+ MultiByte
+ v120
+
+
+ Utility
+ false
+ MultiByte
+ v120
+
+
+ Utility
+ false
+ MultiByte
+ v120
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ Checking Build System
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file "$(SolutionPath)"
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/0a9519b303e1b5029a75e73c81492ebd/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\CMakeFiles\src.dir\src_generated_pathtrace.cu.obj.depend;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA\run_nvcc.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\CMakeFiles\generate.stamp
+ false
+ Checking Build System
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file "$(SolutionPath)"
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/0a9519b303e1b5029a75e73c81492ebd/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\CMakeFiles\src.dir\src_generated_pathtrace.cu.obj.depend;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA\run_nvcc.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\CMakeFiles\generate.stamp
+ false
+ Checking Build System
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file "$(SolutionPath)"
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/0a9519b303e1b5029a75e73c81492ebd/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\CMakeFiles\src.dir\src_generated_pathtrace.cu.obj.depend;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA\run_nvcc.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\CMakeFiles\generate.stamp
+ false
+ Checking Build System
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file "$(SolutionPath)"
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/CMakeFiles/0a9519b303e1b5029a75e73c81492ebd/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\CMakeFiles\src.dir\src_generated_pathtrace.cu.obj.depend;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA\run_nvcc.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/ZERO_CHECK.vcxproj.filters b/build/ZERO_CHECK.vcxproj.filters
new file mode 100644
index 0000000..73f4e36
--- /dev/null
+++ b/build/ZERO_CHECK.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2CA8D7D6-765F-39EB-A769-557BE5DF83FB}
+
+
+
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cis565_path_tracer.lastbuildstate b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cis565_path_tracer.lastbuildstate
new file mode 100644
index 0000000..267f8f0
--- /dev/null
+++ b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cis565_path_tracer.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
+Debug|x64|C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\|
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cis565_path_tracer.write.1u.tlog b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cis565_path_tracer.write.1u.tlog
new file mode 100644
index 0000000..ff4c571
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cis565_path_tracer.write.1u.tlog differ
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cl.command.1.tlog b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cl.command.1.tlog
new file mode 100644
index 0000000..3245edc
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cl.command.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cl.read.1.tlog b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cl.read.1.tlog
new file mode 100644
index 0000000..465db7c
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cl.read.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cl.write.1.tlog b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cl.write.1.tlog
new file mode 100644
index 0000000..adc8e45
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/cl.write.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/custombuild.command.1.tlog b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/custombuild.command.1.tlog
new file mode 100644
index 0000000..5bb46d4
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/custombuild.command.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/custombuild.read.1.tlog b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/custombuild.read.1.tlog
new file mode 100644
index 0000000..ecc9df5
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/custombuild.read.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/custombuild.write.1.tlog b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/custombuild.write.1.tlog
new file mode 100644
index 0000000..8900e4a
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/custombuild.write.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/link.command.1.tlog b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/link.command.1.tlog
new file mode 100644
index 0000000..5095204
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/link.command.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/link.read.1.tlog b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/link.read.1.tlog
new file mode 100644
index 0000000..d74bb07
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/link.read.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/link.write.1.tlog b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/link.write.1.tlog
new file mode 100644
index 0000000..e627048
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/cis565_p.FEE5D524.tlog/link.write.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_path_tracer.Build.CppClean.log b/build/cis565_path_tracer.dir/Debug/cis565_path_tracer.Build.CppClean.log
new file mode 100644
index 0000000..ac00a4a
--- /dev/null
+++ b/build/cis565_path_tracer.dir/Debug/cis565_path_tracer.Build.CppClean.log
@@ -0,0 +1,18 @@
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\debug\cis565_path_tracer.lib
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\debug\cis565_path_tracer.exp
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\vc120.pdb
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\main.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cmakefiles\generate.stamp
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\debug\cis565_path_tracer.ilk
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\debug\cis565_path_tracer.exe
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\debug\cis565_path_tracer.pdb
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\cis565_p.fee5d524.tlog\cis565_path_tracer.write.1u.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\cis565_p.fee5d524.tlog\cl.command.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\cis565_p.fee5d524.tlog\cl.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\cis565_p.fee5d524.tlog\cl.write.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\cis565_p.fee5d524.tlog\custombuild.command.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\cis565_p.fee5d524.tlog\custombuild.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\cis565_p.fee5d524.tlog\custombuild.write.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\cis565_p.fee5d524.tlog\link.command.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\cis565_p.fee5d524.tlog\link.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\debug\cis565_p.fee5d524.tlog\link.write.1.tlog
diff --git a/build/cis565_path_tracer.dir/Debug/cis565_path_tracer.log b/build/cis565_path_tracer.dir/Debug/cis565_path_tracer.log
new file mode 100644
index 0000000..70d1dd4
--- /dev/null
+++ b/build/cis565_path_tracer.dir/Debug/cis565_path_tracer.log
@@ -0,0 +1,25 @@
+Build started 10/7/2016 4:11:35 PM.
+ 1>Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\cis565_path_tracer.vcxproj" on node 2 (Build target(s)).
+ 1>Link:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:PROMPT /OUT:"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\Debug\cis565_path_tracer.exe" /INCREMENTAL /NOLOGO /LIBPATH:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win" /LIBPATH:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win/Debug" kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib" src\Debug\src.lib ..\external\lib\win\glfw3.lib glu32.lib opengl32.lib ..\external\lib\win\glew32s.lib "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib" /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Debug/cis565_path_tracer.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Debug/cis565_path_tracer.lib" /MACHINE:X64 /machine:x64 cis565_path_tracer.dir\Debug\main.obj
+ Creating library C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Debug/cis565_path_tracer.lib and object C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Debug/cis565_path_tracer.exp
+ 1>LINK : warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library
+ 1>LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library
+ 1>glew32s.lib(glew.obj) : warning LNK4099: PDB 'vc120.pdb' was not found with 'glew32s.lib(glew.obj)' or at 'C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\Debug\vc120.pdb'; linking object as if no debug info
+ cis565_path_tracer.vcxproj -> C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\Debug\cis565_path_tracer.exe
+ PostBuildEvent:
+ setlocal
+ "C:\Program Files\CMake\bin\cmake.exe" -E copy_directory C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/shaders C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/shaders
+ if %errorlevel% neq 0 goto :cmEnd
+ :cmEnd
+ endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+ :cmErrorLevel
+ exit /b %1
+ :cmDone
+ if %errorlevel% neq 0 goto :VCEnd
+ :VCEnd
+ 1>Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\cis565_path_tracer.vcxproj" (Build target(s)).
+
+Build succeeded.
+
+Time Elapsed 00:00:00.53
diff --git a/build/cis565_path_tracer.dir/Debug/main.obj b/build/cis565_path_tracer.dir/Debug/main.obj
new file mode 100644
index 0000000..b84a8d7
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/main.obj differ
diff --git a/build/cis565_path_tracer.dir/Debug/vc120.pdb b/build/cis565_path_tracer.dir/Debug/vc120.pdb
new file mode 100644
index 0000000..f864a07
Binary files /dev/null and b/build/cis565_path_tracer.dir/Debug/vc120.pdb differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/CL.read.1.tlog b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..6ca1242
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/CL.read.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/CL.write.1.tlog b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..a4e1d6c
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/CL.write.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/cis565_path_tracer.lastbuildstate b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/cis565_path_tracer.lastbuildstate
new file mode 100644
index 0000000..f0caeb2
--- /dev/null
+++ b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/cis565_path_tracer.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
+Release|x64|C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\|
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/cis565_path_tracer.write.1u.tlog b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/cis565_path_tracer.write.1u.tlog
new file mode 100644
index 0000000..fb13414
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/cis565_path_tracer.write.1u.tlog differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/cl.command.1.tlog b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/cl.command.1.tlog
new file mode 100644
index 0000000..5a9a86c
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/cl.command.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/custombuild.command.1.tlog b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/custombuild.command.1.tlog
new file mode 100644
index 0000000..5bb46d4
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/custombuild.command.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/custombuild.read.1.tlog b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/custombuild.read.1.tlog
new file mode 100644
index 0000000..ecc9df5
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/custombuild.read.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/custombuild.write.1.tlog b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/custombuild.write.1.tlog
new file mode 100644
index 0000000..8900e4a
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/custombuild.write.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/link.command.1.tlog b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/link.command.1.tlog
new file mode 100644
index 0000000..338f606
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/link.command.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/link.read.1.tlog b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/link.read.1.tlog
new file mode 100644
index 0000000..2ae715e
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/link.read.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/link.write.1.tlog b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/link.write.1.tlog
new file mode 100644
index 0000000..707d424
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/cis565_p.FEE5D524.tlog/link.write.1.tlog differ
diff --git a/build/cis565_path_tracer.dir/Release/cis565_path_tracer.Build.CppClean.log b/build/cis565_path_tracer.dir/Release/cis565_path_tracer.Build.CppClean.log
new file mode 100644
index 0000000..5317c61
--- /dev/null
+++ b/build/cis565_path_tracer.dir/Release/cis565_path_tracer.Build.CppClean.log
@@ -0,0 +1,15 @@
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\release\cis565_path_tracer.lib
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\release\cis565_path_tracer.exp
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\main.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cmakefiles\generate.stamp
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\release\cis565_path_tracer.exe
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\cis565_p.fee5d524.tlog\cis565_path_tracer.write.1u.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\cis565_p.fee5d524.tlog\cl.command.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\cis565_p.fee5d524.tlog\cl.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\cis565_p.fee5d524.tlog\cl.write.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\cis565_p.fee5d524.tlog\custombuild.command.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\cis565_p.fee5d524.tlog\custombuild.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\cis565_p.fee5d524.tlog\custombuild.write.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\cis565_p.fee5d524.tlog\link.command.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\cis565_p.fee5d524.tlog\link.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\cis565_path_tracer.dir\release\cis565_p.fee5d524.tlog\link.write.1.tlog
diff --git a/build/cis565_path_tracer.dir/Release/cis565_path_tracer.log b/build/cis565_path_tracer.dir/Release/cis565_path_tracer.log
new file mode 100644
index 0000000..267f6e5
--- /dev/null
+++ b/build/cis565_path_tracer.dir/Release/cis565_path_tracer.log
@@ -0,0 +1,38 @@
+Build started 10/9/2016 7:37:07 PM.
+ 1>Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\cis565_path_tracer.vcxproj" on node 2 (Rebuild target(s)).
+ 1>CustomBuild:
+ Building Custom Rule C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt
+ CMake does not need to re-run because C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp is up-to-date.
+ ClCompile:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /I"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external" /I"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include" /I"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\." /I"C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include" /nologo /W3 /WX- /O2 /Ob2 /D WIN32 /D _WINDOWS /D NDEBUG /D GLEW_STATIC /D "CMAKE_INTDIR=\"Release\"" /D _MBCS /Gm- /EHsc /MD /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cis565_path_tracer.dir\Release\\" /Fd"cis565_path_tracer.dir\Release\vc120.pdb" /Gd /TP /errorReport:prompt "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\main.cpp"
+ main.cpp
+ 1>C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\main.cpp(142): warning C4244: 'initializing' : conversion from 'int' to 'float', possible loss of data
+ 1>C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\main.cpp(193): warning C4018: '<' : signed/unsigned mismatch
+ 1>C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\main.cpp(253): warning C4553: '==' : operator has no effect; did you intend '='?
+ 1>C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\main.cpp(260): warning C4553: '==' : operator has no effect; did you intend '='?
+ 1>C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\main.cpp(267): warning C4553: '==' : operator has no effect; did you intend '='?
+ 1>C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\main.cpp(312): warning C4129: 's' : unrecognized character escape sequence
+ 1>C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\main.cpp(332): warning C4244: '-=' : conversion from 'double' to 'float', possible loss of data
+ 1>C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\main.cpp(333): warning C4244: '-=' : conversion from 'double' to 'float', possible loss of data
+ 1>C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\src\main.cpp(338): warning C4244: '+=' : conversion from 'double' to 'float', possible loss of data
+ Link:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:PROMPT /OUT:"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\Release\cis565_path_tracer.exe" /INCREMENTAL:NO /NOLOGO /LIBPATH:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win" /LIBPATH:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win/Release" kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib" src\Release\src.lib ..\external\lib\win\glfw3.lib glu32.lib opengl32.lib ..\external\lib\win\glew32s.lib "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib" /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Release/cis565_path_tracer.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Release/cis565_path_tracer.lib" /MACHINE:X64 /machine:x64 cis565_path_tracer.dir\Release\main.obj
+ Creating library C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Release/cis565_path_tracer.lib and object C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Release/cis565_path_tracer.exp
+ 1>LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library
+ cis565_path_tracer.vcxproj -> C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\Release\cis565_path_tracer.exe
+ PostBuildEvent:
+ setlocal
+ "C:\Program Files\CMake\bin\cmake.exe" -E copy_directory C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/shaders C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/shaders
+ if %errorlevel% neq 0 goto :cmEnd
+ :cmEnd
+ endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+ :cmErrorLevel
+ exit /b %1
+ :cmDone
+ if %errorlevel% neq 0 goto :VCEnd
+ :VCEnd
+ 1>Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\cis565_path_tracer.vcxproj" (Rebuild target(s)).
+
+Build succeeded.
+
+Time Elapsed 00:00:00.78
diff --git a/build/cis565_path_tracer.dir/Release/main.obj b/build/cis565_path_tracer.dir/Release/main.obj
new file mode 100644
index 0000000..7e556a4
Binary files /dev/null and b/build/cis565_path_tracer.dir/Release/main.obj differ
diff --git a/build/cis565_path_tracer.sdf b/build/cis565_path_tracer.sdf
new file mode 100644
index 0000000..b42aece
Binary files /dev/null and b/build/cis565_path_tracer.sdf differ
diff --git a/build/cis565_path_tracer.sln b/build/cis565_path_tracer.sln
new file mode 100644
index 0000000..c80bec8
--- /dev/null
+++ b/build/cis565_path_tracer.sln
@@ -0,0 +1,66 @@
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 2013
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{30DC4AE1-7B59-3E8F-A251-04F2010BC082}"
+ ProjectSection(ProjectDependencies) = postProject
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263} = {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}
+ {FEE5D524-60D4-37AE-89B3-448E35B99F06} = {FEE5D524-60D4-37AE-89B3-448E35B99F06}
+ {41D13C2A-D743-38AA-BF19-6293C92EBC79} = {41D13C2A-D743-38AA-BF19-6293C92EBC79}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "ZERO_CHECK.vcxproj", "{011DD20C-CB3D-35BA-8D9D-2182FB8CA263}"
+ ProjectSection(ProjectDependencies) = postProject
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cis565_path_tracer", "cis565_path_tracer.vcxproj", "{FEE5D524-60D4-37AE-89B3-448E35B99F06}"
+ ProjectSection(ProjectDependencies) = postProject
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263} = {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}
+ {41D13C2A-D743-38AA-BF19-6293C92EBC79} = {41D13C2A-D743-38AA-BF19-6293C92EBC79}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "src", "src\src.vcxproj", "{41D13C2A-D743-38AA-BF19-6293C92EBC79}"
+ ProjectSection(ProjectDependencies) = postProject
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263} = {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Release|x64 = Release|x64
+ MinSizeRel|x64 = MinSizeRel|x64
+ RelWithDebInfo|x64 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {30DC4AE1-7B59-3E8F-A251-04F2010BC082}.Debug|x64.ActiveCfg = Debug|x64
+ {30DC4AE1-7B59-3E8F-A251-04F2010BC082}.Release|x64.ActiveCfg = Release|x64
+ {30DC4AE1-7B59-3E8F-A251-04F2010BC082}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {30DC4AE1-7B59-3E8F-A251-04F2010BC082}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}.Debug|x64.ActiveCfg = Debug|x64
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}.Debug|x64.Build.0 = Debug|x64
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}.Release|x64.ActiveCfg = Release|x64
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}.Release|x64.Build.0 = Release|x64
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {011DD20C-CB3D-35BA-8D9D-2182FB8CA263}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {FEE5D524-60D4-37AE-89B3-448E35B99F06}.Debug|x64.ActiveCfg = Debug|x64
+ {FEE5D524-60D4-37AE-89B3-448E35B99F06}.Debug|x64.Build.0 = Debug|x64
+ {FEE5D524-60D4-37AE-89B3-448E35B99F06}.Release|x64.ActiveCfg = Release|x64
+ {FEE5D524-60D4-37AE-89B3-448E35B99F06}.Release|x64.Build.0 = Release|x64
+ {FEE5D524-60D4-37AE-89B3-448E35B99F06}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {FEE5D524-60D4-37AE-89B3-448E35B99F06}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {FEE5D524-60D4-37AE-89B3-448E35B99F06}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {FEE5D524-60D4-37AE-89B3-448E35B99F06}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {41D13C2A-D743-38AA-BF19-6293C92EBC79}.Debug|x64.ActiveCfg = Debug|x64
+ {41D13C2A-D743-38AA-BF19-6293C92EBC79}.Debug|x64.Build.0 = Debug|x64
+ {41D13C2A-D743-38AA-BF19-6293C92EBC79}.Release|x64.ActiveCfg = Release|x64
+ {41D13C2A-D743-38AA-BF19-6293C92EBC79}.Release|x64.Build.0 = Release|x64
+ {41D13C2A-D743-38AA-BF19-6293C92EBC79}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {41D13C2A-D743-38AA-BF19-6293C92EBC79}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {41D13C2A-D743-38AA-BF19-6293C92EBC79}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {41D13C2A-D743-38AA-BF19-6293C92EBC79}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ EndGlobalSection
+ GlobalSection(ExtensibilityAddIns) = postSolution
+ EndGlobalSection
+EndGlobal
diff --git a/build/cis565_path_tracer.v12.suo b/build/cis565_path_tracer.v12.suo
new file mode 100644
index 0000000..bc897d5
Binary files /dev/null and b/build/cis565_path_tracer.v12.suo differ
diff --git a/build/cis565_path_tracer.vcxproj b/build/cis565_path_tracer.vcxproj
new file mode 100644
index 0000000..cc307fe
--- /dev/null
+++ b/build/cis565_path_tracer.vcxproj
@@ -0,0 +1,378 @@
+
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {FEE5D524-60D4-37AE-89B3-448E35B99F06}
+ Win32Proj
+ x64
+ cis565_path_tracer
+
+
+
+ Application
+ false
+ MultiByte
+ v120
+
+
+ Application
+ false
+ MultiByte
+ v120
+
+
+ Application
+ false
+ MultiByte
+ v120
+
+
+ Application
+ false
+ MultiByte
+ v120
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\Debug\
+ cis565_path_tracer.dir\Debug\
+ cis565_path_tracer
+ .exe
+ true
+ true
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\Release\
+ cis565_path_tracer.dir\Release\
+ cis565_path_tracer
+ .exe
+ false
+ true
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\MinSizeRel\
+ cis565_path_tracer.dir\MinSizeRel\
+ cis565_path_tracer
+ .exe
+ false
+ true
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\RelWithDebInfo\
+ cis565_path_tracer.dir\RelWithDebInfo\
+ cis565_path_tracer
+ .exe
+ true
+ true
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ Debug/
+ EnableFastChecks
+ CompileAsCpp
+ ProgramDatabase
+ Sync
+ Disabled
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ true
+ Level3
+ WIN32;_WINDOWS;_DEBUG;GLEW_STATIC;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_WINDOWS;_DEBUG;GLEW_STATIC;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -E copy_directory C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/shaders C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/shaders
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+ /machine:x64 %(AdditionalOptions)
+ kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib;src\Debug\src.lib;..\external\lib\win\glfw3.lib;glu32.lib;opengl32.lib;..\external\lib\win\glew32s.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win;C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win/$(Configuration);%(AdditionalLibraryDirectories)
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Debug/cis565_path_tracer.lib
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Debug/cis565_path_tracer.pdb
+ Console
+
+
+
+ false
+
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ Release/
+ CompileAsCpp
+ Sync
+ AnySuitable
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ true
+ Level3
+ WIN32;_WINDOWS;NDEBUG;GLEW_STATIC;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+
+ WIN32;_WINDOWS;NDEBUG;GLEW_STATIC;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -E copy_directory C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/shaders C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/shaders
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+ /machine:x64 %(AdditionalOptions)
+ kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib;src\Release\src.lib;..\external\lib\win\glfw3.lib;glu32.lib;opengl32.lib;..\external\lib\win\glew32s.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win;C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win/$(Configuration);%(AdditionalLibraryDirectories)
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Release/cis565_path_tracer.lib
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/Release/cis565_path_tracer.pdb
+ Console
+
+
+
+ false
+
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ MinSizeRel/
+ CompileAsCpp
+ Sync
+ OnlyExplicitInline
+ MinSpace
+ NotUsing
+ MultiThreadedDLL
+ true
+ Level3
+ WIN32;_WINDOWS;NDEBUG;GLEW_STATIC;CMAKE_INTDIR="MinSizeRel";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+
+ WIN32;_WINDOWS;NDEBUG;GLEW_STATIC;CMAKE_INTDIR=\"MinSizeRel\";%(PreprocessorDefinitions)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -E copy_directory C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/shaders C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/shaders
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+ /machine:x64 %(AdditionalOptions)
+ kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib;src\MinSizeRel\src.lib;..\external\lib\win\glfw3.lib;glu32.lib;opengl32.lib;..\external\lib\win\glew32s.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win;C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win/$(Configuration);%(AdditionalLibraryDirectories)
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/MinSizeRel/cis565_path_tracer.lib
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/MinSizeRel/cis565_path_tracer.pdb
+ Console
+
+
+
+ false
+
+
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ RelWithDebInfo/
+ CompileAsCpp
+ ProgramDatabase
+ Sync
+ OnlyExplicitInline
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ true
+ Level3
+ WIN32;_WINDOWS;NDEBUG;GLEW_STATIC;CMAKE_INTDIR="RelWithDebInfo";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_WINDOWS;NDEBUG;GLEW_STATIC;CMAKE_INTDIR=\"RelWithDebInfo\";%(PreprocessorDefinitions)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+
+
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\external\include;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\.;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -E copy_directory C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/shaders C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/shaders
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+ /machine:x64 %(AdditionalOptions)
+ kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib;src\RelWithDebInfo\src.lib;..\external\lib\win\glfw3.lib;glu32.lib;opengl32.lib;..\external\lib\win\glew32s.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\lib\x64\cudart_static.lib
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win;C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/lib/win/$(Configuration);%(AdditionalLibraryDirectories)
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/RelWithDebInfo/cis565_path_tracer.lib
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/RelWithDebInfo/cis565_path_tracer.pdb
+ Console
+
+
+
+ false
+
+
+
+
+ Building Custom Rule C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-file C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-file C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-file C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer -BC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build --check-stamp-file C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInitialize.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCCompiler.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\3.6.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindGLEW.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindOpenGL.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindThreads.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckLibraryExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckSymbolExists.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CheckIncludeFile.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.6\Modules\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindCUDA.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageHandleStandardArgs.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\FindPackageMessage.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\cmake\CMakeParseArguments.cmake;C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\CMakeLists.txt;%(AdditionalInputs)
+ C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+ 011DD20C-CB3D-35BA-8D9D-2182FB8CA263
+
+
+ 41D13C2A-D743-38AA-BF19-6293C92EBC79
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/cis565_path_tracer.vcxproj.filters b/build/cis565_path_tracer.vcxproj.filters
new file mode 100644
index 0000000..b5cd35b
--- /dev/null
+++ b/build/cis565_path_tracer.vcxproj.filters
@@ -0,0 +1,24 @@
+
+
+
+
+ Source Files
+
+
+
+
+ Header Files
+
+
+
+
+
+
+
+ {8A948D1C-0B53-32B6-B5C1-46FDA22CAE08}
+
+
+ {A84E7133-E7C2-3278-9929-6B50BA99E43E}
+
+
+
diff --git a/build/cis565_path_tracer.vcxproj.user b/build/cis565_path_tracer.vcxproj.user
new file mode 100644
index 0000000..71fbc32
--- /dev/null
+++ b/build/cis565_path_tracer.vcxproj.user
@@ -0,0 +1,11 @@
+
+
+
+ ../scenes/cornell2.txt ../scenes/stanford_bunny.obj
+ WindowsLocalDebugger
+
+
+ ../scenes/cornell.txt
+ WindowsLocalDebugger
+
+
\ No newline at end of file
diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake
new file mode 100644
index 0000000..fa1fd0e
--- /dev/null
+++ b/build/cmake_install.cmake
@@ -0,0 +1,45 @@
+# Install script for directory: C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files/cis565_path_tracer")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for each subdirectory.
+ include("C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/cmake_install.cmake")
+
+endif()
+
+if(CMAKE_INSTALL_COMPONENT)
+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
+else()
+ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
+endif()
+
+string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
+ "${CMAKE_INSTALL_MANIFEST_FILES}")
+file(WRITE "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/${CMAKE_INSTALL_MANIFEST}"
+ "${CMAKE_INSTALL_MANIFEST_CONTENT}")
diff --git a/build/src/CMakeFiles/generate.stamp b/build/src/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/build/src/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/build/src/CMakeFiles/generate.stamp.depend b/build/src/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..8eb78ee
--- /dev/null
+++ b/build/src/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,4 @@
+# CMake generation dependency list for this directory.
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/CMakeLists.txt
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir/src_generated_pathtrace.cu.obj.depend
+C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/cmake/FindCUDA/run_nvcc.cmake
diff --git a/build/src/CMakeFiles/src.dir/Debug/src_generated_pathtrace.cu.obj b/build/src/CMakeFiles/src.dir/Debug/src_generated_pathtrace.cu.obj
new file mode 100644
index 0000000..cbc2499
Binary files /dev/null and b/build/src/CMakeFiles/src.dir/Debug/src_generated_pathtrace.cu.obj differ
diff --git a/build/src/CMakeFiles/src.dir/Debug/src_intermediate_link.obj b/build/src/CMakeFiles/src.dir/Debug/src_intermediate_link.obj
new file mode 100644
index 0000000..d7aced3
Binary files /dev/null and b/build/src/CMakeFiles/src.dir/Debug/src_intermediate_link.obj differ
diff --git a/build/src/CMakeFiles/src.dir/Release/src_generated_pathtrace.cu.obj b/build/src/CMakeFiles/src.dir/Release/src_generated_pathtrace.cu.obj
new file mode 100644
index 0000000..fa25c26
Binary files /dev/null and b/build/src/CMakeFiles/src.dir/Release/src_generated_pathtrace.cu.obj differ
diff --git a/build/src/CMakeFiles/src.dir/Release/src_intermediate_link.obj b/build/src/CMakeFiles/src.dir/Release/src_intermediate_link.obj
new file mode 100644
index 0000000..501bcb4
Binary files /dev/null and b/build/src/CMakeFiles/src.dir/Release/src_intermediate_link.obj differ
diff --git a/build/src/CMakeFiles/src.dir/src_generated_pathtrace.cu.obj.cmake b/build/src/CMakeFiles/src.dir/src_generated_pathtrace.cu.obj.cmake
new file mode 100644
index 0000000..504371a
--- /dev/null
+++ b/build/src/CMakeFiles/src.dir/src_generated_pathtrace.cu.obj.cmake
@@ -0,0 +1,296 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "C:/Program Files/CMake/bin/cmake.exe") # path
+set(source_file "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu") # path
+set(NVCC_generated_dependency_file "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir//src_generated_pathtrace.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir//src_generated_pathtrace.cu.obj.depend") # path
+set(CUDA_make2cmake "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/cmake/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/cmake/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)bin") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir//$(Configuration)") # path
+set(generated_file_internal "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir//$(Configuration)/src_generated_pathtrace.cu.obj") # path
+set(generated_cubin_file_internal "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir//$(Configuration)/src_generated_pathtrace.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; -arch=sm_20) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_DEBUG -G;-g ; )
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-DGLEW_STATIC) # list
+set(CUDA_NVCC_INCLUDE_ARGS "-IC:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include;-IC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external;-IC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include;-IC:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/.;-IC:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include") # list (needs to be in quotes to handle spaces properly).
+set(format_flag "-dc") # string
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /DWIN32 /D_WINDOWS /W3 /GR /EHsc )
+set(CMAKE_HOST_FLAGS_DEBUG /D_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_RELEASE /MD /O2 /Ob2 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ set(nvcc_host_compiler_flags "${nvcc_host_compiler_flags},\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)bin" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E remove "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 7.5)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ cmake_policy(PUSH)
+ # CMake policy 0007 NEW states that empty list elements are not
+ # ignored. I'm just setting it to avoid the warning that's printed.
+ cmake_policy(SET CMP0007 NEW)
+ # Note that this will remove all occurances of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+ cmake_policy(POP)
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invokation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E remove "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E remove "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
diff --git a/build/src/CMakeFiles/src.dir/src_generated_pathtrace.cu.obj.depend b/build/src/CMakeFiles/src.dir/src_generated_pathtrace.cu.obj.depend
new file mode 100644
index 0000000..ba5f766
--- /dev/null
+++ b/build/src/CMakeFiles/src.dir/src_generated_pathtrace.cu.obj.depend
@@ -0,0 +1,1025 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/ConcurrencySal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/algorithm"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/ammintrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/assert.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/cassert"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/cerrno"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/cfloat"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/climits"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/cmath"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/crtdbg.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/crtdefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/crtwrn.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/cstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/cstdio"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/cstdlib"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/cstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/ctype.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/cwchar"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/eh.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/emmintrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/errno.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/exception"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/excpt.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/float.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/fstream"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/functional"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/immintrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/initializer_list"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/intrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/ios"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/iosfwd"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/iostream"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/istream"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/iterator"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/limits"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/limits.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/locale.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/malloc.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/map"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/math.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/memory"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/mmintrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/new"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/nmmintrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/ostream"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/pmmintrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/sal.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/set"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/setjmp.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/share.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/smmintrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/sstream"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/stdarg.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/stddef.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/stdexcept"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/stdint.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/stdio.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/stdlib.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/streambuf"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/string"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/string.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/swprintf.inl"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/system_error"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/time.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/time.inl"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/tmmintrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/tuple"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/type_traits"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/typeinfo"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/use_ansi.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/utility"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/vadefs.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/vector"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/wchar.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/wmmintrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/wtime.inl"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xatomic0.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xdebug"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xfacet"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xfunctional"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xiosbase"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xkeycheck.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xlocale"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xlocinfo"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xlocinfo.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xlocnum"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xmemory"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xmemory0"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xmmintrin.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xrefwrap"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xstddef"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xstring"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xtgmath.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xtr1common"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xtree"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/xutility"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/ymath.h"
+ "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/yvals.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/WTypesbase.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/apiset.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/apisetcconv.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/basetsd.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/bcrypt.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/cderr.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/driverspecs.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/guiddef.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/inaddr.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/kernelspecs.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/ktmtypes.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/minwindef.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/poppack.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/pshpack1.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/pshpack2.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/pshpack4.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/pshpack8.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/rpc.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/rpcasync.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/rpcdce.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/rpcdcep.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/rpcndr.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/rpcnterr.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/rpcsal.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/sdkddkver.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/sdv_driverspecs.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/specstrings.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/specstrings_strict.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/specstrings_undef.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/stralign.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/tvout.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/winapifamily.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/windef.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/winerror.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/winsmcrd.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/wnnc.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/shared/wtypes.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/OAIdl.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/ObjIdl.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/ObjIdlbase.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/Ole2.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/OleAuto.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/PropIdl.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/Unknwn.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/Unknwnbase.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/WinBase.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/WinNls.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/WinUser.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/Windows.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/bemapiset.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/cguid.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/combaseapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/commdlg.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/consoleapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/datetimeapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/dde.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/ddeml.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/debugapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/dlgs.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/dpapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/errhandlingapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/fibersapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/fileapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/handleapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/heapapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/ime_cmodes.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/imm.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/interlockedapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/ioapiset.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/jobapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/joystickapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/libloaderapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/lzexpand.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/mciapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/mcx.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/memoryapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/minwinbase.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/mmeapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/mmiscapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/mmiscapi2.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/mmsyscom.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/mmsystem.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/msxml.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/namedpipeapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/namespaceapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/nb30.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/ncrypt.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/objbase.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/oleidl.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/playsoundapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/processenv.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/processthreadsapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/processtopologyapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/profileapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/prsht.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/realtimeapiset.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/reason.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/rpcnsi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/rpcnsip.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/securityappcontainer.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/securitybaseapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/servprov.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/shellapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/stringapiset.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/synchapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/sysinfoapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/systemtopologyapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/threadpoolapiset.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/threadpoollegacyapiset.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/timeapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/timezoneapi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/urlmon.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/utilapiset.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/verrsrc.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/wincon.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/wincrypt.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winefs.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/wingdi.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winioctl.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winnetwk.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winnt.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winperf.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winreg.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winscard.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winsock.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winspool.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winsvc.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/winver.h"
+ "C:/Program Files (x86)/Windows Kits/8.1/Include/um/wow64apiset.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/builtin_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/channel_descriptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/common_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/cuda.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/cuda_device_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/cuda_runtime.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/cuda_surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/cuda_texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/device_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/device_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/device_double_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/device_double_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/device_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/device_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/device_launch_parameters.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/device_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/driver_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/host_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/host_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/math_constants.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/math_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/math_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/math_functions_dbl_ptx3.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/math_functions_dbl_ptx3.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_20_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_20_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_20_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_20_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_30_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_30_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_32_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_32_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_32_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_32_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_35_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/sm_35_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/surface_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/surface_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/surface_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/surface_indirect_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/texture_fetch_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/texture_fetch_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/texture_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/texture_indirect_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/advance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/adjacent_difference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/advance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/allocator_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/allocator_traits.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/copy_construct_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/copy_construct_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/default_construct_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/default_construct_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/destroy_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/destroy_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/fill_construct_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/fill_construct_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/no_throw_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/tagged_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/tagged_allocator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/temporary_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/allocator/temporary_allocator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/compiler.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/compiler_fence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/debug.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/device_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/exec_check_disable.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/forceinline.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/global_workarounds.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/host_device.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/host_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/config/simple_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/contiguous_storage.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/contiguous_storage.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/copy_if.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/count.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/cstdint.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/device_ptr.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/device_reference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/dispatch/is_trivial_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/distance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/execute_with_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/fill.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/find.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/for_each.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/function.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/actor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/actor.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/argument.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/composite.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/operators/arithmetic_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/operators/assignment_operator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/operators/bitwise_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/operators/compound_assignment_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/operators/logical_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/operators/operator_adaptors.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/operators/relational_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/placeholder.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/functional/value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/gather.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/generate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/integer_math.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/integer_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/internal_functional.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/merge.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/minmax.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/mpl/math.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/numeric_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/pair.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/partition.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/pointer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/pointer.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/range/head_flags.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/range/tail_flags.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/raw_pointer_cast.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/raw_reference_cast.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/reference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/reference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/reference_forward_declaration.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/remove.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/replace.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/reverse.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/scan.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/scatter.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/seq.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/sequence.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/set_operations.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/static_assert.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/swap.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/swap_ranges.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/tabulate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/temporary_array.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/temporary_array.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/transform.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/transform_reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/trivial_sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/tuple.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/tuple_meta_transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/tuple_transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/algorithm/intermediate_type_from_function_and_iterators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/function_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/has_member_function.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/has_nested_type.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/has_trivial_assign.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/is_call_possible.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/is_metafunction_defined.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/iterator/is_output_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/minimum_type.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/pointer_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/type_traits/result_of.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/uninitialized_fill.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/use_default.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/detail/util/blocking.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/device_ptr.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/device_reference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/distance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/functional.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/gather.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/constant_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/counting_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/any_assign.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/any_system_tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/constant_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/counting_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/device_system_tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/discard_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/distance_from_result.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/host_system_tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/is_iterator_category.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/is_trivial_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/iterator_adaptor_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/iterator_category_to_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/iterator_category_to_traversal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/iterator_category_with_system_and_traversal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/iterator_facade_category.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/iterator_traits.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/iterator_traversal_tags.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/join_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/minimum_category.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/minimum_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/normal_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/permutation_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/reverse_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/reverse_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/tagged_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/transform_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/tuple_of_iterator_references.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/universal_categories.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/zip_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/detail/zip_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/discard_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/iterator_adaptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/iterator_categories.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/iterator_facade.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/iterator_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/permutation_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/reverse_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/transform_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/iterator/zip_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/memory.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/pair.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/discard_block_engine.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/linear_congruential_engine.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/linear_congruential_engine_discard.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/linear_feedback_shift_engine.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/linear_feedback_shift_engine_wordmask.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/mod.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/normal_distribution.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/normal_distribution_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/random_core_access.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/subtract_with_carry_engine.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/uniform_int_distribution.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/uniform_real_distribution.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/xor_combine_engine.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/detail/xor_combine_engine_max.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/discard_block_engine.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/linear_congruential_engine.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/linear_feedback_shift_engine.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/normal_distribution.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/subtract_with_carry_engine.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/uniform_int_distribution.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/uniform_real_distribution.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/random/xor_combine_engine.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/binary_search.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/gather.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/inner_product.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/logical.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/par.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/transform_scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/uninitialized_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/detail/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cpp/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/adjacent_difference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/binary_search.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/block/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/block/exclusive_scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/block/inclusive_scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/block/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/accumulate.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/adjacent_difference.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/copy.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/detail/stable_merge_sort.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/gather.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/merge.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/reduce.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/reduce_by_key.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/scan.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/scatter.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/algorithm/sort.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/async.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/bulk.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/choose_sizes.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/alignment.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/apply_from_tuple.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/async.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/choose_sizes.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/closure.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/config.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launch_config.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/cuda_launcher/parameter_ptr.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/cuda_launcher/runtime_introspection.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/cuda_launcher/runtime_introspection.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/cuda_launcher/triple_chevron_launcher.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/cuda_task.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/guarded_cuda_runtime_api.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/head_flags.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/is_contiguous_iterator.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/pointer_traits.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/synchronize.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/tail_flags.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/terminate.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/throw_on_error.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/tuple_meta_transform.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/detail/tuple_transform.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/execution_policy.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/future.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/iterator.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/iterator/strided_iterator.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/malloc.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/bulk/uninitialized.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/copy_cross_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/copy_cross_system.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/copy_device_to_device.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/copy_device_to_device.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/copy_if.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_discontinuity.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_exchange.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_histogram.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_load.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_radix_rank.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_radix_sort.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_raking_layout.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_shift.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/block_store.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/specializations/block_histogram_atomic.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/specializations/block_histogram_sort.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/specializations/block_reduce_raking.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/specializations/block_reduce_raking_commutative_only.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/specializations/block_reduce_warp_reductions.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/specializations/block_scan_raking.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block/specializations/block_scan_warp_scans.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/block_histogram_sweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/block_radix_sort_downsweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/block_radix_sort_upsweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/block_reduce_by_key_sweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/block_reduce_sweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/block_scan_prefix_operators.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/block_scan_sweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/block_select_sweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/specializations/block_histogram_gatomic_sweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/specializations/block_histogram_satomic_sweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/block_sweep/specializations/block_histogram_sort_sweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/cub.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/device_histogram.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/device_partition.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/device_radix_sort.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/device_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/device_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/device_select.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/dispatch/device_histogram_dispatch.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/dispatch/device_radix_sort_dispatch.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/dispatch/device_reduce_by_key_dispatch.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/dispatch/device_reduce_dispatch.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/dispatch/device_scan_dispatch.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/device/dispatch/device_select_dispatch.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/grid/grid_even_share.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/grid/grid_mapping.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/grid/grid_queue.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/host/spinlock.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/iterator/arg_index_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/iterator/cache_modified_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/iterator/cache_modified_output_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/iterator/constant_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/iterator/counting_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/iterator/tex_obj_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/iterator/tex_ref_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/iterator/transform_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/thread/thread_load.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/thread/thread_operators.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/thread/thread_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/thread/thread_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/thread/thread_store.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/util_allocator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/util_arch.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/util_debug.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/util_device.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/util_macro.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/util_namespace.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/util_ptx.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/util_type.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/warp/specializations/warp_reduce_shfl.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/warp/specializations/warp_reduce_smem.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/warp/specializations/warp_scan_shfl.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/warp/specializations/warp_scan_smem.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/warp/warp_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cub/warp/warp_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/cuda_launch_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/decomposition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/default_decomposition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/default_decomposition.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/alignment.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/balanced_path.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/launch_calculator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/launch_calculator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/launch_closure.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/launch_closure.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/set_operation.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/set_operation.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/stable_merge_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/stable_merge_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/stable_primitive_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/stable_primitive_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/stable_radix_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/stable_radix_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/stable_sort_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/stable_sort_each.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/uninitialized.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/detail/virtualized_smem_closure.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/error.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/execute_on_stream.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/extern_shared_ptr.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/for_each.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/gather.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/guarded_cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/guarded_driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/inner_product.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/logical.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/merge.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/par.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/reduce_by_key.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/reduce_intervals.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/reduce_intervals.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/reduce_intervals.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/runtime_introspection.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/runtime_introspection.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/scan.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/set_difference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/set_intersection.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/set_symmetric_difference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/set_union.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/synchronize.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/synchronize.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/temporary_indirect_permutation.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/terminate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/throw_on_error.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/transform_scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/trivial_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/trivial_copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/uninitialized_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/detail/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/error.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/cuda/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/gather.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/adl/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/bad_alloc.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/errno.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/error_category.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/error_code.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/error_condition.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/adjacent_difference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/advance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/advance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/copy_if.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/count.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/distance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/distance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/find.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/gather.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/gather.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/generate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/memory.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/memory.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/merge.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/partition.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/reduce_by_key.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/remove.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/replace.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/reverse.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/scan.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/scan_by_key.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/scatter.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/select_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/sequence.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/set_operations.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/swap_ranges.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/tabulate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/temporary_buffer.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/transform.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/transform_reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/type_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/generic/uninitialized_fill.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/internal/decompose.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/binary_search.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/copy_backward.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/gather.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/general_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/insertion_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/merge.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/stable_merge_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/stable_merge_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/stable_primitive_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/stable_primitive_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/stable_radix_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/stable_radix_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/trivial_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/sequential/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/detail/system_error.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/error_code.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system/system_error.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/system_error.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/tuple.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/thrust/version.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/vector_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/vector_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include/vector_types.h"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/common.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/_fixes.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/_vectorize.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_common.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_common.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_exponential.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_exponential.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_geometric.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_geometric.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_integer.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_integer.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_matrix.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_matrix.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_packing.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_packing.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_trigonometric.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_trigonometric.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_vector_relational.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/func_vector_relational.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/precision.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/setup.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_float.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_half.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_half.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_int.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat2x2.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat2x2.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat2x3.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat2x3.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat2x4.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat2x4.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat3x2.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat3x2.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat3x3.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat3x3.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat3x4.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat3x4.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat4x2.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat4x2.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat4x3.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat4x3.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat4x4.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_mat4x4.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_vec.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_vec1.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_vec1.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_vec2.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_vec2.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_vec3.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_vec3.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_vec4.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/detail/type_vec4.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/exponential.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/fwd.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/geometric.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/glm.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtc/constants.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtc/constants.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtc/matrix_inverse.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtc/matrix_inverse.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtc/quaternion.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtc/quaternion.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtx/closest_point.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtx/closest_point.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtx/intersect.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtx/intersect.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtx/norm.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtx/norm.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtx/quaternion.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/gtx/quaternion.inl"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/integer.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/mat2x2.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/mat2x3.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/mat2x4.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/mat3x2.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/mat3x3.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/mat3x4.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/mat4x2.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/mat4x3.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/mat4x4.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/matrix.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/packing.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/trigonometric.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/vec2.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/vec3.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/vec4.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/external/include/glm/vector_relational.hpp"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/interactions.h"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/intersections.h"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/objmesh.h"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.h"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/scene.h"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/sceneStructs.h"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/tiny_obj_loader.h"
+ "C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/utilities.h"
+)
+
diff --git a/build/src/CMakeFiles/src.dir/vc120.pdb b/build/src/CMakeFiles/src.dir/vc120.pdb
new file mode 100644
index 0000000..166862c
Binary files /dev/null and b/build/src/CMakeFiles/src.dir/vc120.pdb differ
diff --git a/build/src/Debug/src.lib b/build/src/Debug/src.lib
new file mode 100644
index 0000000..4482f6f
Binary files /dev/null and b/build/src/Debug/src.lib differ
diff --git a/build/src/Release/src.lib b/build/src/Release/src.lib
new file mode 100644
index 0000000..85fb4fc
Binary files /dev/null and b/build/src/Release/src.lib differ
diff --git a/build/src/cmake_install.cmake b/build/src/cmake_install.cmake
new file mode 100644
index 0000000..847c250
--- /dev/null
+++ b/build/src/cmake_install.cmake
@@ -0,0 +1,29 @@
+# Install script for directory: C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files/cis565_path_tracer")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
diff --git a/build/src/src.dir/Debug/glslUtility.obj b/build/src/src.dir/Debug/glslUtility.obj
new file mode 100644
index 0000000..21601c9
Binary files /dev/null and b/build/src/src.dir/Debug/glslUtility.obj differ
diff --git a/build/src/src.dir/Debug/image.obj b/build/src/src.dir/Debug/image.obj
new file mode 100644
index 0000000..e6cf128
Binary files /dev/null and b/build/src/src.dir/Debug/image.obj differ
diff --git a/build/src/src.dir/Debug/objmesh.obj b/build/src/src.dir/Debug/objmesh.obj
new file mode 100644
index 0000000..b4e0d70
Binary files /dev/null and b/build/src/src.dir/Debug/objmesh.obj differ
diff --git a/build/src/src.dir/Debug/preview.obj b/build/src/src.dir/Debug/preview.obj
new file mode 100644
index 0000000..64c2055
Binary files /dev/null and b/build/src/src.dir/Debug/preview.obj differ
diff --git a/build/src/src.dir/Debug/scene.obj b/build/src/src.dir/Debug/scene.obj
new file mode 100644
index 0000000..aaa4f72
Binary files /dev/null and b/build/src/src.dir/Debug/scene.obj differ
diff --git a/build/src/src.dir/Debug/src.Build.CppClean.log b/build/src/src.dir/Debug/src.Build.CppClean.log
new file mode 100644
index 0000000..fa34ed0
--- /dev/null
+++ b/build/src/src.dir/Debug/src.Build.CppClean.log
@@ -0,0 +1,21 @@
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\vc120.pdb
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\objmesh.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\tiny_obj_loader.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\utilities.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\preview.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\scene.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\glslutility.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\image.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\stb.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\cmakefiles\generate.stamp
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\cmakefiles\src.dir\debug\src_generated_pathtrace.cu.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\debug\src.lib
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\src.tlog\cl.command.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\src.tlog\cl.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\src.tlog\cl.write.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\src.tlog\custombuild.command.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\src.tlog\custombuild.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\src.tlog\custombuild.write.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\src.tlog\lib-link.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\src.tlog\lib-link.write.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\debug\src.tlog\lib.command.1.tlog
diff --git a/build/src/src.dir/Debug/src.log b/build/src/src.dir/Debug/src.log
new file mode 100644
index 0000000..9231f70
--- /dev/null
+++ b/build/src/src.dir/Debug/src.log
@@ -0,0 +1,946 @@
+Build started 10/7/2016 4:10:57 PM.
+ 1>Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\src.vcxproj" on node 2 (Build target(s)).
+ 1>CustomBuild:
+ Building NVCC (Device) object src/CMakeFiles/src.dir/Debug/src_generated_pathtrace.cu.obj
+ pathtrace.cu
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(124): warning : statement is unreachable
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(91): warning : variable "refl" was declared but never referenced
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(109): warning : calling a __host__ function from a __host__ __device__ function is not allowed
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(116): warning : calling a __host__ function from a __host__ __device__ function is not allowed
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(391): warning : variable "t" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(396): warning : variable "outside" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(410): warning : variable "pidxo1" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(411): warning : variable "pidxo2" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(412): warning : variable "pidxo3" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(413): warning : variable "intersected" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(544): warning : variable "t" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(549): warning : variable "outside" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(563): warning : variable "pidxo1" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(564): warning : variable "pidxo2" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(565): warning : variable "pidxo3" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(566): warning : variable "intersected" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(83): warning : variable "iter2" was declared but never referenced
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(109) (col. 11) : warning : calling a __host__ function("std::max ") from a __host__ __device__ function("getFresnelValOld") is not allowed
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(116) (col. 15) : warning : calling a __host__ function("std::max ") from a __host__ __device__ function("getFresnelValOld") is not allowed
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(124): warning : statement is unreachable
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(91): warning : variable "refl" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(391): warning : variable "t" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(396): warning : variable "outside" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(410): warning : variable "pidxo1" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(411): warning : variable "pidxo2" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(412): warning : variable "pidxo3" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(413): warning : variable "intersected" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(544): warning : variable "t" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(549): warning : variable "outside" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(563): warning : variable "pidxo1" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(564): warning : variable "pidxo2" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(565): warning : variable "pidxo3" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(566): warning : variable "intersected" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(83): warning : variable "iter2" was declared but never referenced
+
+
+
+ pathtrace.cu
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(241): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x00>::size_type', possible loss of data
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(303): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x00>::size_type', possible loss of data
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(319): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x00>::size_type', possible loss of data
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(439): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::concurrent_group,0x00>::size_type', possible loss of data
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\intersections.h(66): warning C4244: '=' : conversion from 'int' to 'float', possible loss of data
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(102): warning C4244: 'return' : conversion from 'const float' to 'int', possible loss of data
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(989): warning C4244: 'initializing' : conversion from '__int64' to 'int', possible loss of data
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(1006): warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(1083): warning C4244: '=' : conversion from '__int64' to 'int', possible loss of data
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(250): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>::size_type', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(625) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00> thrust::system::cuda::detail::bulk_::par,0x00>>(ExecutionAgent,size_t)' being compiled
+
+ with
+
+ [
+
+ ExecutionAgent=thrust::system::cuda::detail::bulk_::concurrent_group,0x00>
+
+ ]
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(155): warning C4267: 'return' : conversion from 'size_t' to 'int', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(148) : while compiling class template member function 'int thrust::system::cuda::detail::bulk_::detail::cuda_launcher_base<0,thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>,Closure>::choose_group_size(int)'
+
+ with
+
+ [
+
+ Closure=thrust::system::cuda::detail::bulk_::detail::closure,thrust::pointer,thrust::detail::wrapped_function,unsigned int,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(305) : see reference to function template instantiation 'int thrust::system::cuda::detail::bulk_::detail::cuda_launcher_base<0,thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>,Closure>::choose_group_size(int)' being compiled
+
+ with
+
+ [
+
+ Closure=thrust::system::cuda::detail::bulk_::detail::closure,thrust::pointer,thrust::detail::wrapped_function,unsigned int,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(228) : see reference to class template instantiation 'thrust::system::cuda::detail::bulk_::detail::cuda_launcher_base<0,thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>,Closure>' being compiled
+
+ with
+
+ [
+
+ Closure=thrust::system::cuda::detail::bulk_::detail::closure,thrust::pointer,thrust::detail::wrapped_function,unsigned int,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/choose_sizes.inl(41) : see reference to class template instantiation 'thrust::system::cuda::detail::bulk_::detail::cuda_launcher,0x00>,0x00>,Closure>' being compiled
+
+ with
+
+ [
+
+ Closure=thrust::system::cuda::detail::bulk_::detail::closure,thrust::pointer,thrust::detail::wrapped_function,unsigned int,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/choose_sizes.inl(96) : see reference to function template instantiation 'thrust::pair thrust::system::cuda::detail::bulk_::detail::choose_sizes,thrust::pointer,thrust::detail::wrapped_function,unsigned int,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>>(thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>,Closure)' being compiled
+
+ with
+
+ [
+
+ Closure=thrust::system::cuda::detail::bulk_::detail::closure,thrust::pointer,thrust::detail::wrapped_function,unsigned int,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/for_each.inl(125) : see reference to function template instantiation 'thrust::pair thrust::system::cuda::detail::bulk_::choose_sizes,RandomAccessIterator,thrust::detail::wrapped_function,unsigned int>(thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>,Function,Arg1,Arg2,Arg3,Arg4)' being compiled
+
+ with
+
+ [
+
+ RandomAccessIterator=thrust::pointer
+
+ , Function=thrust::system::cuda::detail::for_each_n_detail::for_each_kernel
+
+ , Arg1=thrust::system::cuda::detail::bulk_::detail::cursor<0>
+
+ , Arg2=thrust::pointer
+
+ , Arg3=thrust::detail::wrapped_function
+
+ , Arg4=unsigned int
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/sort.inl(221) : see reference to function template instantiation 'void thrust::sort(const thrust::detail::execution_policy_base &,RandomAccessIterator,RandomAccessIterator,StrictWeakOrdering)' being compiled
+
+ with
+
+ [
+
+ DerivedPolicy=thrust::detail::seq_t
+
+ , RandomAccessIterator=thrust::device_ptr
+
+ , StrictWeakOrdering=thrust::less
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/allocator/allocator_traits.inl(249) : while compiling class template member function 'void thrust::detail::allocator_traits::deallocate(thrust::detail::no_throw_allocator> &,thrust::pointer,unsigned __int64)'
+
+ with
+
+ [
+
+ Alloc=thrust::detail::no_throw_allocator>
+
+ , T=PathSegment
+
+ , System=thrust::system::cuda::detail::tag
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/contiguous_storage.inl(172) : see reference to function template instantiation 'void thrust::detail::allocator_traits::deallocate(thrust::detail::no_throw_allocator> &,thrust::pointer,unsigned __int64)' being compiled
+
+ with
+
+ [
+
+ Alloc=thrust::detail::no_throw_allocator>
+
+ , T=PathSegment
+
+ , System=thrust::system::cuda::detail::tag
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/contiguous_storage.inl(169) : while compiling class template member function 'void thrust::detail::contiguous_storage>>::deallocate(void)'
+
+ with
+
+ [
+
+ T=PathSegment
+
+ , System=thrust::system::cuda::detail::tag
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/contiguous_storage.inl(64) : see reference to function template instantiation 'void thrust::detail::contiguous_storage>>::deallocate(void)' being compiled
+
+ with
+
+ [
+
+ T=PathSegment
+
+ , System=thrust::system::cuda::detail::tag
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/contiguous_storage.inl(38) : while compiling class template member function 'thrust::detail::contiguous_storage>>::contiguous_storage(const thrust::detail::no_throw_allocator> &)'
+
+ with
+
+ [
+
+ T=PathSegment
+
+ , System=thrust::system::cuda::detail::tag
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/temporary_array.inl(131) : see reference to function template instantiation 'thrust::detail::contiguous_storage>>::contiguous_storage(const thrust::detail::no_throw_allocator> &)' being compiled
+
+ with
+
+ [
+
+ T=PathSegment
+
+ , System=thrust::system::cuda::detail::tag
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/contiguous_storage.inl(90) : while compiling class template member function 'thrust::detail::normal_iterator> thrust::detail::contiguous_storage>>::begin(void)'
+
+ with
+
+ [
+
+ T=PathSegment
+
+ , System=thrust::system::cuda::detail::tag
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/detail/generic/remove.inl(89) : see reference to function template instantiation 'thrust::detail::normal_iterator> thrust::detail::contiguous_storage>>::begin(void)' being compiled
+
+ with
+
+ [
+
+ T=PathSegment
+
+ , System=thrust::system::cuda::detail::tag
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/temporary_array.h(38) : see reference to class template instantiation 'thrust::detail::contiguous_storage>>' being compiled
+
+ with
+
+ [
+
+ T=PathSegment
+
+ , System=thrust::system::cuda::detail::tag
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/detail/generic/remove.inl(86) : see reference to class template instantiation 'thrust::detail::temporary_array' being compiled
+
+ with
+
+ [
+
+ DerivedPolicy=thrust::system::cuda::detail::tag
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/remove.inl(76) : see reference to function template instantiation 'ForwardIterator thrust::system::detail::generic::remove_if(thrust::execution_policy &,ForwardIterator,ForwardIterator,Predicate)' being compiled
+
+ with
+
+ [
+
+ ForwardIterator=thrust::device_ptr
+
+ , Predicate=is_zero_bounce
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/remove.inl(181) : see reference to function template instantiation 'ForwardIterator thrust::remove_if(const thrust::detail::execution_policy_base &,ForwardIterator,ForwardIterator,Predicate)' being compiled
+
+ with
+
+ [
+
+ ForwardIterator=thrust::device_ptr
+
+ , DerivedPolicy=thrust::system::cuda::detail::tag
+
+ , Predicate=is_zero_bounce
+
+ ]
+
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(1082) : see reference to function template instantiation 'ForwardIterator thrust::remove_if,is_zero_bounce>(ForwardIterator,ForwardIterator,Predicate)' being compiled
+
+ with
+
+ [
+
+ ForwardIterator=thrust::device_ptr
+
+ , Predicate=is_zero_bounce
+
+ ]
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/detail/stable_sort_each.inl(299): warning C4244: 'initializing' : conversion from 'difference_type' to 'int', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/detail/stable_merge_sort.inl(412) : see reference to function template instantiation 'void thrust::system::cuda::detail::detail::stable_sort_each_copy<11,thrust::system::cuda::detail::tag,context_type,RandomAccessIterator,unsigned int*,thrust::detail::normal_iterator>,Compare>(thrust::system::cuda::detail::execution_policy &,Context,unsigned int,RandomAccessIterator1,RandomAccessIterator1,Pointer,RandomAccessIterator2,Compare)' being compiled
+
+ with
+
+ [
+
+ RandomAccessIterator=thrust::detail::normal_iterator>
+
+ , Compare=thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare
+
+ , Context=context_type
+
+ , RandomAccessIterator1=thrust::detail::normal_iterator>
+
+ , Pointer=unsigned int *
+
+ , RandomAccessIterator2=thrust::detail::normal_iterator>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/detail/stable_merge_sort.inl(457) : see reference to function template instantiation 'void thrust::system::cuda::detail::detail::stable_merge_sort_detail::stable_merge_sort_n(thrust::system::cuda::detail::execution_policy &,RandomAccessIterator,Size,Compare)' being compiled
+
+ with
+
+ [
+
+ RandomAccessIterator=thrust::detail::normal_iterator>
+
+ , Compare=thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare
+
+ , Size=thrust::detail::uint32_t
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/detail/stable_merge_sort.inl(488) : see reference to function template instantiation 'void thrust::system::cuda::detail::detail::stable_merge_sort_detail::stable_merge_sort>,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>(thrust::system::cuda::detail::execution_policy &,RandomAccessIterator,RandomAccessIterator,Compare)' being compiled
+
+ with
+
+ [
+
+ RandomAccessIterator=thrust::detail::normal_iterator>
+
+ , Compare=thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/sort.inl(135) : see reference to function template instantiation 'void thrust::system::cuda::detail::detail::stable_merge_sort(thrust::system::cuda::detail::execution_policy &,RandomAccessIterator,RandomAccessIterator,Compare)' being compiled
+
+ with
+
+ [
+
+ RandomAccessIterator=thrust::device_ptr
+
+ , StrictWeakOrdering=thrust::less
+
+ , Compare=thrust::less
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/sort.inl(213) : see reference to function template instantiation 'void thrust::system::cuda::detail::stable_sort_detail::stable_sort(thrust::system::cuda::detail::execution_policy &,RandomAccessIterator,RandomAccessIterator,StrictWeakOrdering)' being compiled
+
+ with
+
+ [
+
+ RandomAccessIterator=thrust::device_ptr
+
+ , StrictWeakOrdering=thrust::less
+
+ ]
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(85): warning C4267: 'return' : conversion from 'size_t' to 'int', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(84) : while compiling class template member function 'int thrust::system::cuda::detail::bulk_::detail::cuda_launcher_base<0,thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>,Closure>::max_active_blocks_per_multiprocessor(const thrust::system::cuda::detail::bulk_::detail::device_properties_t &,const thrust::system::cuda::detail::bulk_::detail::function_attributes_t &,int,int)'
+
+ with
+
+ [
+
+ Closure=thrust::system::cuda::detail::bulk_::detail::closure,thrust::pointer,thrust::detail::wrapped_function,unsigned int,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(96) : see reference to function template instantiation 'int thrust::system::cuda::detail::bulk_::detail::cuda_launcher_base<0,thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>,Closure>::max_active_blocks_per_multiprocessor(const thrust::system::cuda::detail::bulk_::detail::device_properties_t &,const thrust::system::cuda::detail::bulk_::detail::function_attributes_t &,int,int)' being compiled
+
+ with
+
+ [
+
+ Closure=thrust::system::cuda::detail::bulk_::detail::closure,thrust::pointer,thrust::detail::wrapped_function,unsigned int,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ ]
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(458): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::concurrent_group,0x0200>::size_type', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(667) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::concurrent_group,0x0200> thrust::system::cuda::detail::bulk_::con<0x0200,0x03>(size_t)' being compiled
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/scan.inl(235) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::async_launch,0x0200>,0x00>> thrust::system::cuda::detail::bulk_::grid<0x0200,3>(size_t,size_t,cudaStream_t)' being compiled
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/scan.inl(406) : see reference to function template instantiation 'OutputIterator thrust::system::cuda::detail::scan_detail::inclusive_scan(thrust::system::cuda::detail::execution_policy &,InputIterator,InputIterator,OutputIterator,AssociativeOperator)' being compiled
+
+ with
+
+ [
+
+ OutputIterator=thrust::detail::normal_iterator>
+
+ , InputIterator=thrust::detail::normal_iterator>
+
+ , AssociativeOperator=thrust::plus<__int64>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/temporary_indirect_permutation.h(43) : while compiling class template member function 'thrust::system::cuda::detail::temporary_indirect_permutation::temporary_indirect_permutation(thrust::execution_policy &,RandomAccessIterator,RandomAccessIterator)'
+
+ with
+
+ [
+
+ DerivedPolicy=thrust::system::cuda::detail::tag
+
+ , RandomAccessIterator=thrust::device_ptr
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/temporary_indirect_permutation.h(149) : see reference to function template instantiation 'thrust::system::cuda::detail::temporary_indirect_permutation::temporary_indirect_permutation(thrust::execution_policy &,RandomAccessIterator,RandomAccessIterator)' being compiled
+
+ with
+
+ [
+
+ DerivedPolicy=thrust::system::cuda::detail::tag
+
+ , RandomAccessIterator=thrust::device_ptr
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/temporary_indirect_permutation.h(138) : see reference to class template instantiation 'thrust::system::cuda::detail::temporary_indirect_permutation' being compiled
+
+ with
+
+ [
+
+ DerivedPolicy=thrust::system::cuda::detail::tag
+
+ , RandomAccessIterator=thrust::device_ptr
+
+ ]
+
+ c:\users\moi\appdata\local\temp\tmpxft_00003924_00000000-5_pathtrace.cudafe1.stub.c(47) : see reference to class template instantiation 'thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>' being compiled
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(458): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::concurrent_group,0x080>::size_type', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(667) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::concurrent_group,0x080> thrust::system::cuda::detail::bulk_::con<0x080,0x09>(size_t)' being compiled
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/scan.inl(259) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::async_launch,0x080>,0x00>> thrust::system::cuda::detail::bulk_::grid<0x080,0x09>(size_t,size_t,cudaStream_t)' being compiled
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(458): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::concurrent_group,0x0100>::size_type', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(667) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::concurrent_group,0x0100> thrust::system::cuda::detail::bulk_::con<0x0100,0x03>(size_t)' being compiled
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/scan.inl(267) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::async_launch,0x0100>,0x00>> thrust::system::cuda::detail::bulk_::grid<0x0100,0x03>(size_t,size_t,cudaStream_t)' being compiled
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/pair.inl(46): warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(101) : see reference to function template instantiation 'thrust::pair::pair(const thrust::pair &)' being compiled
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(101) : see reference to function template instantiation 'thrust::pair::pair(const thrust::pair &)' being compiled
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(94) : while compiling class template member function 'thrust::pair thrust::system::cuda::detail::bulk_::detail::cuda_launcher_base<0,thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>,Closure>::dynamic_smem_occupancy_limit(const thrust::system::cuda::detail::bulk_::detail::device_properties_t &,const thrust::system::cuda::detail::bulk_::detail::function_attributes_t &,int,int)'
+
+ with
+
+ [
+
+ Closure=thrust::system::cuda::detail::bulk_::detail::closure,thrust::pointer,thrust::detail::wrapped_function,unsigned int,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(119) : see reference to function template instantiation 'thrust::pair thrust::system::cuda::detail::bulk_::detail::cuda_launcher_base<0,thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>,Closure>::dynamic_smem_occupancy_limit(const thrust::system::cuda::detail::bulk_::detail::device_properties_t &,const thrust::system::cuda::detail::bulk_::detail::function_attributes_t &,int,int)' being compiled
+
+ with
+
+ [
+
+ Closure=thrust::system::cuda::detail::bulk_::detail::closure,thrust::pointer,thrust::detail::wrapped_function,unsigned int,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ ]
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(250): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x0200>,0x00>::size_type', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(311) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::parallel_group,0x0200>,0x00> thrust::system::cuda::detail::bulk_::par(ExecutionAgent,size_t)' being compiled
+
+ with
+
+ [
+
+ ExecutionAgent=thrust::system::cuda::detail::bulk_::concurrent_group,0x0200>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(667) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::async_launch,0x0200>,0x00>> thrust::system::cuda::detail::bulk_::par,0x0200>>(cudaStream_t,ExecutionAgent,size_t)' being compiled
+
+ with
+
+ [
+
+ ExecutionAgent=thrust::system::cuda::detail::bulk_::concurrent_group,0x0200>
+
+ ]
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(250): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x080>,0x00>::size_type', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(311) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::parallel_group,0x080>,0x00> thrust::system::cuda::detail::bulk_::par(ExecutionAgent,size_t)' being compiled
+
+ with
+
+ [
+
+ ExecutionAgent=thrust::system::cuda::detail::bulk_::concurrent_group,0x080>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(667) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::async_launch,0x080>,0x00>> thrust::system::cuda::detail::bulk_::par,0x080>>(cudaStream_t,ExecutionAgent,size_t)' being compiled
+
+ with
+
+ [
+
+ ExecutionAgent=thrust::system::cuda::detail::bulk_::concurrent_group,0x080>
+
+ ]
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(250): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x0100>,0x00>::size_type', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(311) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::parallel_group,0x0100>,0x00> thrust::system::cuda::detail::bulk_::par(ExecutionAgent,size_t)' being compiled
+
+ with
+
+ [
+
+ ExecutionAgent=thrust::system::cuda::detail::bulk_::concurrent_group,0x0100>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/bulk/execution_policy.hpp(667) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::async_launch,0x0100>,0x00>> thrust::system::cuda::detail::bulk_::par,0x0100>>(cudaStream_t,ExecutionAgent,size_t)' being compiled
+
+ with
+
+ [
+
+ ExecutionAgent=thrust::system::cuda::detail::bulk_::concurrent_group,0x0100>
+
+ ]
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/internal_functional.h(322): warning C4244: '=' : conversion from '__int64' to 'unsigned int', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/function.h(60) : see reference to function template instantiation 'void thrust::detail::unary_transform_functor>,unsigned int,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>>::operator ()>(Tuple)' being compiled
+
+ with
+
+ [
+
+ Tuple=thrust::detail::tuple_of_iterator_references<__int64,unsigned int &,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/function.h(60) : see reference to function template instantiation 'void thrust::detail::unary_transform_functor>,unsigned int,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>>::operator ()>(Tuple)' being compiled
+
+ with
+
+ [
+
+ Tuple=thrust::detail::tuple_of_iterator_references<__int64,unsigned int &,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/detail/sequential/for_each.h(83) : see reference to function template instantiation 'Result thrust::detail::wrapped_function>,unsigned int,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>>,Result>::operator (),thrust::use_default>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>(const Argument &) const' being compiled
+
+ with
+
+ [
+
+ Result=void
+
+ , Element=unsigned int
+
+ , Argument=thrust::detail::tuple_of_iterator_references<__int64,thrust::reference,thrust::use_default>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/detail/sequential/for_each.h(83) : see reference to function template instantiation 'Result thrust::detail::wrapped_function>,unsigned int,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>>,Result>::operator (),thrust::use_default>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>(const Argument &) const' being compiled
+
+ with
+
+ [
+
+ Result=void
+
+ , Element=unsigned int
+
+ , Argument=thrust::detail::tuple_of_iterator_references<__int64,thrust::reference,thrust::use_default>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/for_each.inl(71) : see reference to function template instantiation 'InputIterator thrust::system::detail::sequential::for_each_n(thrust::system::detail::sequential::execution_policy &,InputIterator,Size,UnaryFunction)' being compiled
+
+ with
+
+ [
+
+ InputIterator=thrust::zip_iterator,thrust::detail::normal_iterator>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ , Size=__int64
+
+ , UnaryFunction=thrust::detail::unary_transform_functor>,unsigned int,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/for_each.inl(152) : see reference to function template instantiation 'InputIterator thrust::for_each_n(const thrust::detail::execution_policy_base &,InputIterator,Size,UnaryFunction)' being compiled
+
+ with
+
+ [
+
+ InputIterator=thrust::zip_iterator,thrust::detail::normal_iterator>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ , DerivedPolicy=thrust::detail::seq_t
+
+ , RandomAccessIterator=thrust::zip_iterator,thrust::detail::normal_iterator>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ , Size=__int64
+
+ , UnaryFunction=thrust::detail::unary_transform_functor>,unsigned int,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>>
+
+ ]
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/detail/stable_merge_sort.inl(327): warning C4244: 'argument' : conversion from '__int64' to 'const unsigned int', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/internal_functional.h(322) : see reference to function template instantiation 'Index thrust::system::cuda::detail::detail::stable_merge_sort_detail::locate_merge_path>,unsigned int,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>::operator ()(Index)' being compiled
+
+ with
+
+ [
+
+ Index=__int64
+
+ , T=__int64
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/internal_functional.h(322) : see reference to function template instantiation 'Index thrust::system::cuda::detail::detail::stable_merge_sort_detail::locate_merge_path>,unsigned int,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>::operator ()(Index)' being compiled
+
+ with
+
+ [
+
+ Index=__int64
+
+ , T=__int64
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/function.h(60) : see reference to function template instantiation 'void thrust::detail::unary_transform_functor>,unsigned int,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>>::operator ()>(Tuple)' being compiled
+
+ with
+
+ [
+
+ Tuple=thrust::detail::tuple_of_iterator_references<__int64,unsigned int &,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/function.h(60) : see reference to function template instantiation 'void thrust::detail::unary_transform_functor>,unsigned int,thrust::system::cuda::detail::temporary_indirect_ordering,thrust::less>::compare>>::operator ()>(Tuple)' being compiled
+
+ with
+
+ [
+
+ Tuple=thrust::detail::tuple_of_iterator_references<__int64,unsigned int &,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>
+
+ ]
+
+ 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/detail/generic/sequence.inl(48): warning C4244: 'return' : conversion from '__int64' to 'unsigned int', possible loss of data
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/internal_functional.h(322) : see reference to function template instantiation 'T thrust::system::detail::generic::sequence_detail::sequence_functor::operator ()<__int64>(Index) const' being compiled
+
+ with
+
+ [
+
+ T=unsigned int
+
+ , Index=__int64
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/internal_functional.h(322) : see reference to function template instantiation 'T thrust::system::detail::generic::sequence_detail::sequence_functor::operator ()<__int64>(Index) const' being compiled
+
+ with
+
+ [
+
+ T=unsigned int
+
+ , Index=__int64
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/function.h(60) : see reference to function template instantiation 'void thrust::detail::unary_transform_functor>::operator ()>(Tuple)' being compiled
+
+ with
+
+ [
+
+ Tuple=thrust::detail::tuple_of_iterator_references<__int64,unsigned int &,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/function.h(60) : see reference to function template instantiation 'void thrust::detail::unary_transform_functor>::operator ()>(Tuple)' being compiled
+
+ with
+
+ [
+
+ Tuple=thrust::detail::tuple_of_iterator_references<__int64,unsigned int &,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/detail/sequential/for_each.h(83) : see reference to function template instantiation 'Result thrust::detail::wrapped_function>,Result>::operator (),thrust::use_default>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>(const Argument &) const' being compiled
+
+ with
+
+ [
+
+ Result=void
+
+ , Element=unsigned int
+
+ , Argument=thrust::detail::tuple_of_iterator_references<__int64,thrust::reference,thrust::use_default>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/detail/sequential/for_each.h(83) : see reference to function template instantiation 'Result thrust::detail::wrapped_function>,Result>::operator (),thrust::use_default>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>(const Argument &) const' being compiled
+
+ with
+
+ [
+
+ Result=void
+
+ , Element=unsigned int
+
+ , Argument=thrust::detail::tuple_of_iterator_references<__int64,thrust::reference,thrust::use_default>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/detail/for_each.inl(71) : see reference to function template instantiation 'InputIterator thrust::system::detail::sequential::for_each_n(thrust::system::detail::sequential::execution_policy &,InputIterator,Size,UnaryFunction)' being compiled
+
+ with
+
+ [
+
+ InputIterator=thrust::zip_iterator,thrust::detail::normal_iterator>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ , Size=__int64
+
+ , UnaryFunction=thrust::detail::unary_transform_functor>
+
+ ]
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\include\thrust/system/cuda/detail/for_each.inl(152) : see reference to function template instantiation 'InputIterator thrust::for_each_n(const thrust::detail::execution_policy_base &,InputIterator,Size,UnaryFunction)' being compiled
+
+ with
+
+ [
+
+ InputIterator=thrust::zip_iterator,thrust::detail::normal_iterator>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ , DerivedPolicy=thrust::detail::seq_t
+
+ , RandomAccessIterator=thrust::zip_iterator,thrust::detail::normal_iterator>,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type,thrust::null_type>>
+
+ , Size=__int64
+
+ , UnaryFunction=thrust::detail::unary_transform_functor>
+
+ ]
+
+ PreLinkEvent:
+ setlocal
+ "C:\Program Files\CMake\bin\cmake.exe" -E echo "Building NVCC intermediate link file src/CMakeFiles/src.dir/Debug/src_intermediate_link.obj"
+ if %errorlevel% neq 0 goto :cmEnd
+ "C:\Program Files\CMake\bin\cmake.exe" -E make_directory C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir/Debug
+ if %errorlevel% neq 0 goto :cmEnd
+ "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.5\bin\nvcc.exe" -G -g -arch=sm_20 -m64 -ccbin "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin" -Xcompiler /MDd -dlink C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir//Debug/src_generated_pathtrace.cu.obj -o C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/build/src/CMakeFiles/src.dir/Debug/src_intermediate_link.obj
+ if %errorlevel% neq 0 goto :cmEnd
+ :cmEnd
+ endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+ :cmErrorLevel
+ exit /b %1
+ :cmDone
+ if %errorlevel% neq 0 goto :VCEnd
+ :VCEnd
+ Building NVCC intermediate link file src/CMakeFiles/src.dir/Debug/src_intermediate_link.obj
+ src_generated_pathtrace.cu.obj
+ Lib:
+ C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\Lib.exe /OUT:"C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\Debug\src.lib" /NOLOGO /MACHINE:X64 /machine:x64 src.dir\Debug\stb.obj
+ src.dir\Debug\image.obj
+ src.dir\Debug\glslUtility.obj
+ src.dir\Debug\scene.obj
+ src.dir\Debug\preview.obj
+ src.dir\Debug\utilities.obj
+ src.dir\Debug\tiny_obj_loader.obj
+ src.dir\Debug\objmesh.obj
+ "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\CMakeFiles\src.dir\Debug\src_generated_pathtrace.cu.obj"
+ "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\CMakeFiles\src.dir\Debug\src_intermediate_link.obj"
+ src.vcxproj -> C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\Debug\src.lib
+ 1>Done Building Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\src.vcxproj" (Build target(s)).
+
+Build succeeded.
+
+Time Elapsed 00:00:37.69
diff --git a/build/src/src.dir/Debug/src.tlog/CL.read.1.tlog b/build/src/src.dir/Debug/src.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..2e8d7e5
Binary files /dev/null and b/build/src/src.dir/Debug/src.tlog/CL.read.1.tlog differ
diff --git a/build/src/src.dir/Debug/src.tlog/CL.write.1.tlog b/build/src/src.dir/Debug/src.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..e4e3829
Binary files /dev/null and b/build/src/src.dir/Debug/src.tlog/CL.write.1.tlog differ
diff --git a/build/src/src.dir/Debug/src.tlog/Lib-link.read.1.tlog b/build/src/src.dir/Debug/src.tlog/Lib-link.read.1.tlog
new file mode 100644
index 0000000..5299f09
Binary files /dev/null and b/build/src/src.dir/Debug/src.tlog/Lib-link.read.1.tlog differ
diff --git a/build/src/src.dir/Debug/src.tlog/Lib-link.write.1.tlog b/build/src/src.dir/Debug/src.tlog/Lib-link.write.1.tlog
new file mode 100644
index 0000000..437eaf6
Binary files /dev/null and b/build/src/src.dir/Debug/src.tlog/Lib-link.write.1.tlog differ
diff --git a/build/src/src.dir/Debug/src.tlog/cl.command.1.tlog b/build/src/src.dir/Debug/src.tlog/cl.command.1.tlog
new file mode 100644
index 0000000..8daafe7
Binary files /dev/null and b/build/src/src.dir/Debug/src.tlog/cl.command.1.tlog differ
diff --git a/build/src/src.dir/Debug/src.tlog/custombuild.command.1.tlog b/build/src/src.dir/Debug/src.tlog/custombuild.command.1.tlog
new file mode 100644
index 0000000..d070907
Binary files /dev/null and b/build/src/src.dir/Debug/src.tlog/custombuild.command.1.tlog differ
diff --git a/build/src/src.dir/Debug/src.tlog/custombuild.read.1.tlog b/build/src/src.dir/Debug/src.tlog/custombuild.read.1.tlog
new file mode 100644
index 0000000..12f05ba
Binary files /dev/null and b/build/src/src.dir/Debug/src.tlog/custombuild.read.1.tlog differ
diff --git a/build/src/src.dir/Debug/src.tlog/custombuild.write.1.tlog b/build/src/src.dir/Debug/src.tlog/custombuild.write.1.tlog
new file mode 100644
index 0000000..b6327ec
Binary files /dev/null and b/build/src/src.dir/Debug/src.tlog/custombuild.write.1.tlog differ
diff --git a/build/src/src.dir/Debug/src.tlog/lib.command.1.tlog b/build/src/src.dir/Debug/src.tlog/lib.command.1.tlog
new file mode 100644
index 0000000..4bee29d
Binary files /dev/null and b/build/src/src.dir/Debug/src.tlog/lib.command.1.tlog differ
diff --git a/build/src/src.dir/Debug/src.tlog/src.lastbuildstate b/build/src/src.dir/Debug/src.tlog/src.lastbuildstate
new file mode 100644
index 0000000..267f8f0
--- /dev/null
+++ b/build/src/src.dir/Debug/src.tlog/src.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
+Debug|x64|C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\|
diff --git a/build/src/src.dir/Debug/stb.obj b/build/src/src.dir/Debug/stb.obj
new file mode 100644
index 0000000..1baf6a2
Binary files /dev/null and b/build/src/src.dir/Debug/stb.obj differ
diff --git a/build/src/src.dir/Debug/tiny_obj_loader.obj b/build/src/src.dir/Debug/tiny_obj_loader.obj
new file mode 100644
index 0000000..38a1d23
Binary files /dev/null and b/build/src/src.dir/Debug/tiny_obj_loader.obj differ
diff --git a/build/src/src.dir/Debug/utilities.obj b/build/src/src.dir/Debug/utilities.obj
new file mode 100644
index 0000000..47d5411
Binary files /dev/null and b/build/src/src.dir/Debug/utilities.obj differ
diff --git a/build/src/src.dir/Debug/vc120.pdb b/build/src/src.dir/Debug/vc120.pdb
new file mode 100644
index 0000000..303d8a1
Binary files /dev/null and b/build/src/src.dir/Debug/vc120.pdb differ
diff --git a/build/src/src.dir/Release/glslUtility.obj b/build/src/src.dir/Release/glslUtility.obj
new file mode 100644
index 0000000..af83f88
Binary files /dev/null and b/build/src/src.dir/Release/glslUtility.obj differ
diff --git a/build/src/src.dir/Release/image.obj b/build/src/src.dir/Release/image.obj
new file mode 100644
index 0000000..4e958d0
Binary files /dev/null and b/build/src/src.dir/Release/image.obj differ
diff --git a/build/src/src.dir/Release/objmesh.obj b/build/src/src.dir/Release/objmesh.obj
new file mode 100644
index 0000000..ceca2f6
Binary files /dev/null and b/build/src/src.dir/Release/objmesh.obj differ
diff --git a/build/src/src.dir/Release/preview.obj b/build/src/src.dir/Release/preview.obj
new file mode 100644
index 0000000..ec02037
Binary files /dev/null and b/build/src/src.dir/Release/preview.obj differ
diff --git a/build/src/src.dir/Release/scene.obj b/build/src/src.dir/Release/scene.obj
new file mode 100644
index 0000000..f300ce2
Binary files /dev/null and b/build/src/src.dir/Release/scene.obj differ
diff --git a/build/src/src.dir/Release/src.Build.CppClean.log b/build/src/src.dir/Release/src.Build.CppClean.log
new file mode 100644
index 0000000..9b047f6
--- /dev/null
+++ b/build/src/src.dir/Release/src.Build.CppClean.log
@@ -0,0 +1,20 @@
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\objmesh.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\tiny_obj_loader.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\utilities.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\preview.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\scene.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\glslutility.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\image.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\stb.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\cmakefiles\src.dir\release\src_generated_pathtrace.cu.obj
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\cmakefiles\generate.stamp
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\release\src.lib
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\src.tlog\cl.command.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\src.tlog\cl.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\src.tlog\cl.write.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\src.tlog\custombuild.command.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\src.tlog\custombuild.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\src.tlog\custombuild.write.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\src.tlog\lib-link.read.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\src.tlog\lib-link.write.1.tlog
+c:\users\moi\git\cis565\project3-cuda-path-tracer\build\src\src.dir\release\src.tlog\lib.command.1.tlog
diff --git a/build/src/src.dir/Release/src.log b/build/src/src.dir/Release/src.log
new file mode 100644
index 0000000..fd129eb
--- /dev/null
+++ b/build/src/src.dir/Release/src.log
@@ -0,0 +1,866 @@
+Build started 10/9/2016 2:45:45 PM.
+ 1>Project "C:\Users\moi\git\CIS565\Project3-CUDA-Path-Tracer\build\src\src.vcxproj" on node 2 (Build target(s)).
+ 1>CustomBuild:
+ Building NVCC (Device) object src/CMakeFiles/src.dir/Release/src_generated_pathtrace.cu.obj
+ pathtrace.cu
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(124): warning : statement is unreachable
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(91): warning : variable "refl" was declared but never referenced
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(109): warning : calling a __host__ function from a __host__ __device__ function is not allowed
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(116): warning : calling a __host__ function from a __host__ __device__ function is not allowed
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\external\include\glm\gtx\intersect.inl(51): warning : calling a __host__ function from a __host__ __device__ function is not allowed
+
+ detected during instantiation of "__nv_bool glm::intersectRayTriangle(const genType &, const genType &, const genType &, const genType &, const genType &, genType &) [with genType=glm::vec3]"
+
+ C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(527): here
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(83): warning : variable "iter2" was declared but never referenced
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(109) (col. 11) : warning : calling a __host__ function("std::max ") from a __host__ __device__ function("getFresnelValOld") is not allowed
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(116) (col. 15) : warning : calling a __host__ function("std::max ") from a __host__ __device__ function("getFresnelValOld") is not allowed
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(124): warning : statement is unreachable
+
+
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(91): warning : variable "refl" was declared but never referenced
+
+
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(83): warning : variable "iter2" was declared but never referenced
+
+
+
+ pathtrace.cu
+
+ 1>C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include\thrust/system/cuda/detail/bulk/execution_policy.hpp(241): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x00>::size_type', possible loss of data
+
+ 1>C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include\thrust/system/cuda/detail/bulk/execution_policy.hpp(303): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x00>::size_type', possible loss of data
+
+ 1>C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include\thrust/system/cuda/detail/bulk/execution_policy.hpp(319): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x00>::size_type', possible loss of data
+
+ 1>C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include\thrust/system/cuda/detail/bulk/execution_policy.hpp(439): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::concurrent_group,0x00>::size_type', possible loss of data
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\intersections.h(66): warning C4244: '=' : conversion from 'int' to 'float', possible loss of data
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(212): warning C4305: 'argument' : truncation from 'double' to 'float'
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(281): warning C4305: 'argument' : truncation from 'double' to 'float'
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(307): warning C4305: 'argument' : truncation from 'double' to 'float'
+
+ 1>c:\users\moi\git\cis565\project3-cuda-path-tracer\src\interactions.h(345): warning C4305: 'argument' : truncation from 'double' to 'float'
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(102): warning C4244: 'return' : conversion from 'const float' to 'int', possible loss of data
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(903): warning C4244: 'initializing' : conversion from '__int64' to 'int', possible loss of data
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(924): warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data
+
+ 1>C:/Users/moi/git/CIS565/Project3-CUDA-Path-Tracer/src/pathtrace.cu(1030): warning C4244: '=' : conversion from '__int64' to 'int', possible loss of data
+
+ 1>C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include\thrust/system/cuda/detail/bulk/execution_policy.hpp(250): warning C4267: 'argument' : conversion from 'size_t' to 'thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>::size_type', possible loss of data
+
+ C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include\thrust/system/cuda/detail/bulk/execution_policy.hpp(625) : see reference to function template instantiation 'thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00> thrust::system::cuda::detail::bulk_::par,0x00>>(ExecutionAgent,size_t)' being compiled
+
+ with
+
+ [
+
+ ExecutionAgent=thrust::system::cuda::detail::bulk_::concurrent_group,0x00>
+
+ ]
+
+ 1>C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(155): warning C4267: 'return' : conversion from 'size_t' to 'int', possible loss of data
+
+ C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v7.5/include\thrust/system/cuda/detail/bulk/detail/cuda_launcher/cuda_launcher.hpp(148) : while compiling class template member function 'int thrust::system::cuda::detail::bulk_::detail::cuda_launcher_base<0,thrust::system::cuda::detail::bulk_::parallel_group,0x00>,0x00>,Closure>::choose_group_size(int)'
+
+ with
+
+ [
+
+ Closure=thrust::system::cuda::detail::bulk_::detail::closure