- configure.cmake
- Configuring libcinder
@@ -120,6 +125,26 @@ Using CLion to buil
Note that by default, CLion will output build files into a folder called cmake-build-debug. If you want to change this to the usual build, which will automatically get ignored by Cinder's .gitignore file, then navigate to Preferences -> Build, Execution, Deployment, and change the field called 'Generation path:' to 'build'.
Running a Cinder sample directly from Cinder's main project.
There are a couple CMakeCache.txt options that will allow you to conveniently build and run a sample that ships with Cinder alongside building the main library. First, you can set the option CINDER_BUILD_SAMPLE to any of the sample names (ex. CINDER_BUILD_SAMPLE=_opengl/Cube), and then you will be able to run that sample by selecting it in the the Select/Run Configuration drop-down in the top right. Alternatively, you could set CINDER_BUILD_ALL_SAMPLES=On, which will load the configurations for all Cinder samples, and you can then run any one of them from within the IDE.
+Using Visual Studio Code to build libcinder and your application
+Aside from the command line and the commercial CLion IDE, you can also use Visual Studio Code to build and work on both libcinder and your application. By itself, VS Code is an open source code-editor developed by Microsoft but its real power lies in its "Extensions System". To set up an environment suitable for C++ in general and Cinder in specific, you will need to install two extension in VS Code. One is the CPP Tools and the other is the Cmake Tools. Another extension which is optional but could help with CMake syntaxing is Cmake so you might want to have that installed as well. To install these extensions, launch VS Code Quick Open (Ctrl + P) and type these commands:
+ext install ms-vscode.cmake-tools
+ext install ms-vscode.cpptools
+ext install twxs.cmake (Optional)
+
+The C++ extension enables a multitude of features by utilizing its intellisense, a mechanism that when connected to Cmake Tools as a compilation toolchain, will make a nice cross-platform route to write and debug Cinder code. Much like a full-fledged IDE (resembling Visual Studio), you will have code completion and suggestions, quick fixes, peaking and jumping to declarations/definitions and using clang-format definitions, you can even have custom code formatting. Plus you’ll have all the console tabs you’ll need and also the ability to attach a debugger to your build to debug and trace. It will be a powerful system for a free and cross-platform solution.
+To build libcinder or any of the samples go to ROOT_PATH/proj/cmake and open the related .workspace file in VS Code. When opened, the extensions will take a little time to set up the environment for you. If it’s your first time using this toolchain, you will need to tell the cmake extension which compiler you prefer (here called Kits):
+
+- On linux, GCC already exists but Cinder suggests clang (read the installation guidehere)
+- On Windows, you will need to install Visual Studio 2019 C++ Build tools to enable the compiler (download from here)
+- On macOS, you will need to have Xcode installed to have clang.
+
+When done, you can configure and build the library and its samples using Ctrl+P + Cmake:Configure command along with the blue footer in VS Code. We encourage everyone to learn more about the Cmake Tools to be able to find their way around better. Here is a nice intro with notes about Kit selection, configuration and building.
+
+When the workspace is opened, go to File->Preferences->Settings, then select the Workspace tab, search for Cmake: Configure Settings and select Edit in settings.json. The workspace file opens up in the editor. Add or modify arguments in to cmake.configureSettings to have them passed to Cmake when configuring the project. You can also do this by directly editing the workspace file from the begining. By default you will find BUILD_SHARED_LIBS:off which means that static libraries will be built. To find more about these possible arguments you can check the CmakeCache.txt in the build folder on root after the first configuration.
+There’s no need to pass arguments about build type (i.e Debug, Release etc.) because VS Code gives access to those using the blue footer.
+
+If you needed to change the formatting rules of the C++ extension, you can use the C_CPP:Clang_format_fallback Style settings. As a sample you can use this parameter to follow Cinder’s contribution guidelines:
+{ BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0, SpaceAfterLogicalNot: true, SpaceBeforeAssignmentOperators: true, SpaceBeforeCpp11BracedList: true, SpaceBeforeCtorInitializerColon: true, SpacesInParentheses: true, SpaceBeforeRangeBasedForLoopColon: true, IndentPPDirectives: BeforeHash, Cpp11BracedListStyle: true, BreakBeforeBraces: Custom, BraceWrapping: {BeforeElse: true, AfterFunction: true} , NamespaceIndentation: None, SortIncludes: false, SortUsingDeclarations: false, AllowShortIfStatementsOnASingleLine: Never, AlignConsecutiveDeclarations: true, AccessModifierOffset: -3}
Structure of Cinder's CMake Files
This section provides an overview of how CMake build support is structured within the Cinder repo.
Cinder's CMake scripts live in the common folder proj/cmake. The root CMakeLists.txt file is largely there so that it is easy to find, and so that our build configuration plays nicely with CMake-based IDEs like CLion.
diff --git a/proj/cmake/Cinder.code-workspace b/proj/cmake/Cinder.code-workspace
new file mode 100644
index 0000000000..bb6b0458ee
--- /dev/null
+++ b/proj/cmake/Cinder.code-workspace
@@ -0,0 +1,11 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.configureSettings": {"BUILD_SHARED_LIBS":false}
+ }
+}
diff --git a/samples/ArcballDemo/proj/cmake/ArcballDemo.code-workspace b/samples/ArcballDemo/proj/cmake/ArcballDemo.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/ArcballDemo/proj/cmake/ArcballDemo.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/BasicApp/proj/cmake/BasicApp.code-workspace b/samples/BasicApp/proj/cmake/BasicApp.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/BasicApp/proj/cmake/BasicApp.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/BasicAppMultiWindow/proj/cmake/BasicAppMultiWindow.code-workspace b/samples/BasicAppMultiWindow/proj/cmake/BasicAppMultiWindow.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/BasicAppMultiWindow/proj/cmake/BasicAppMultiWindow.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/BezierPath/proj/cmake/BezierPath.code-workspace b/samples/BezierPath/proj/cmake/BezierPath.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/BezierPath/proj/cmake/BezierPath.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/BezierPathIteration/proj/cmake/BezierPathIteration.code-workspace b/samples/BezierPathIteration/proj/cmake/BezierPathIteration.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/BezierPathIteration/proj/cmake/BezierPathIteration.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/CairoBasic/proj/cmake/CairoBasic.code-workspace b/samples/CairoBasic/proj/cmake/CairoBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/CairoBasic/proj/cmake/CairoBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/CameraPersp/proj/cmake/CameraPersp.code-workspace b/samples/CameraPersp/proj/cmake/CameraPersp.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/CameraPersp/proj/cmake/CameraPersp.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/CaptureBasic/proj/cmake/CaptureBasic.code-workspace b/samples/CaptureBasic/proj/cmake/CaptureBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/CaptureBasic/proj/cmake/CaptureBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/CaptureCube/proj/cmake/CaptureCube.code-workspace b/samples/CaptureCube/proj/cmake/CaptureCube.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/CaptureCube/proj/cmake/CaptureCube.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/ClipboardBasic/proj/cmake/ClipboardBasic.code-workspace b/samples/ClipboardBasic/proj/cmake/ClipboardBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/ClipboardBasic/proj/cmake/ClipboardBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Compass/proj/cmake/Compass.code-workspace b/samples/Compass/proj/cmake/Compass.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Compass/proj/cmake/Compass.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Earthquake/proj/cmake/Earthquake.code-workspace b/samples/Earthquake/proj/cmake/Earthquake.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Earthquake/proj/cmake/Earthquake.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/EaseGallery/proj/cmake/EaseGallery.code-workspace b/samples/EaseGallery/proj/cmake/EaseGallery.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/EaseGallery/proj/cmake/EaseGallery.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Extrude/proj/cmake/Extrude.code-workspace b/samples/Extrude/proj/cmake/Extrude.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Extrude/proj/cmake/Extrude.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/FallingGears/proj/cmake/FallingGears.code-workspace b/samples/FallingGears/proj/cmake/FallingGears.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/FallingGears/proj/cmake/FallingGears.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/FlickrTestMultithreaded/proj/cmake/FlickrTestMultithreaded.code-workspace b/samples/FlickrTestMultithreaded/proj/cmake/FlickrTestMultithreaded.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/FlickrTestMultithreaded/proj/cmake/FlickrTestMultithreaded.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/FontSample/proj/cmake/FontSample.code-workspace b/samples/FontSample/proj/cmake/FontSample.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/FontSample/proj/cmake/FontSample.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/FrustumCulling/proj/cmake/FrustumCulling.code-workspace b/samples/FrustumCulling/proj/cmake/FrustumCulling.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/FrustumCulling/proj/cmake/FrustumCulling.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Geometry/proj/cmake/Geometry.code-workspace b/samples/Geometry/proj/cmake/Geometry.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Geometry/proj/cmake/Geometry.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/ImageFileBasic/proj/cmake/ImageFileBasic.code-workspace b/samples/ImageFileBasic/proj/cmake/ImageFileBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/ImageFileBasic/proj/cmake/ImageFileBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/ImageHeightField/proj/cmake/ImageHeightField.code-workspace b/samples/ImageHeightField/proj/cmake/ImageHeightField.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/ImageHeightField/proj/cmake/ImageHeightField.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Kaleidoscope/proj/cmake/Kaleidoscope.code-workspace b/samples/Kaleidoscope/proj/cmake/Kaleidoscope.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Kaleidoscope/proj/cmake/Kaleidoscope.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/LocationManager/proj/cmake/LocationManager.code-workspace b/samples/LocationManager/proj/cmake/LocationManager.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/LocationManager/proj/cmake/LocationManager.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Logging/proj/cmake/Logging.code-workspace b/samples/Logging/proj/cmake/Logging.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Logging/proj/cmake/Logging.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/MandelbrotGLSL/proj/cmake/MandelbrotGLSL.code-workspace b/samples/MandelbrotGLSL/proj/cmake/MandelbrotGLSL.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/MandelbrotGLSL/proj/cmake/MandelbrotGLSL.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/MotionBasic/proj/cmake/MotionBasic.code-workspace b/samples/MotionBasic/proj/cmake/MotionBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/MotionBasic/proj/cmake/MotionBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/MultiTouchBasic/proj/cmake/MultiTouchBasic.code-workspace b/samples/MultiTouchBasic/proj/cmake/MultiTouchBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/MultiTouchBasic/proj/cmake/MultiTouchBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/ParamsBasic/proj/cmake/ParamsBasic.code-workspace b/samples/ParamsBasic/proj/cmake/ParamsBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/ParamsBasic/proj/cmake/ParamsBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Picking3D/proj/cmake/Picking3D.code-workspace b/samples/Picking3D/proj/cmake/Picking3D.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Picking3D/proj/cmake/Picking3D.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/QuaternionAccum/proj/cmake/QuaternionAccum.code-workspace b/samples/QuaternionAccum/proj/cmake/QuaternionAccum.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/QuaternionAccum/proj/cmake/QuaternionAccum.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/QuickTimeAdvanced/proj/cmake/QuickTimeAdvanced.code-workspace b/samples/QuickTimeAdvanced/proj/cmake/QuickTimeAdvanced.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/QuickTimeAdvanced/proj/cmake/QuickTimeAdvanced.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/QuickTimeAvfWriter/proj/cmake/QuickTimeAvfWriter.code-workspace b/samples/QuickTimeAvfWriter/proj/cmake/QuickTimeAvfWriter.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/QuickTimeAvfWriter/proj/cmake/QuickTimeAvfWriter.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/QuickTimeBasic/proj/cmake/QuickTimeBasic.code-workspace b/samples/QuickTimeBasic/proj/cmake/QuickTimeBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/QuickTimeBasic/proj/cmake/QuickTimeBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/QuickTimeIteration/proj/cmake/QuickTimeIteration.code-workspace b/samples/QuickTimeIteration/proj/cmake/QuickTimeIteration.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/QuickTimeIteration/proj/cmake/QuickTimeIteration.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/RDiffusion/proj/cmake/RDiffusion.code-workspace b/samples/RDiffusion/proj/cmake/RDiffusion.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/RDiffusion/proj/cmake/RDiffusion.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Renderer2dBasic/proj/cmake/Renderer2dBasic.code-workspace b/samples/Renderer2dBasic/proj/cmake/Renderer2dBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Renderer2dBasic/proj/cmake/Renderer2dBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/SaveImage/proj/cmake/SaveImage.code-workspace b/samples/SaveImage/proj/cmake/SaveImage.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/SaveImage/proj/cmake/SaveImage.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/SerialCommunication/proj/cmake/SerialCommunication.code-workspace b/samples/SerialCommunication/proj/cmake/SerialCommunication.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/SerialCommunication/proj/cmake/SerialCommunication.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/StereoscopicRendering/proj/cmake/StereoscopicRendering.code-workspace b/samples/StereoscopicRendering/proj/cmake/StereoscopicRendering.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/StereoscopicRendering/proj/cmake/StereoscopicRendering.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/SurfaceBasic/proj/cmake/SurfaceBasic.code-workspace b/samples/SurfaceBasic/proj/cmake/SurfaceBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/SurfaceBasic/proj/cmake/SurfaceBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/TextBox/proj/cmake/TextBox.code-workspace b/samples/TextBox/proj/cmake/TextBox.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/TextBox/proj/cmake/TextBox.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/TextTest/proj/cmake/TextTest.code-workspace b/samples/TextTest/proj/cmake/TextTest.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/TextTest/proj/cmake/TextTest.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/TextureFont/proj/cmake/TextureFont.code-workspace b/samples/TextureFont/proj/cmake/TextureFont.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/TextureFont/proj/cmake/TextureFont.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Triangulation/proj/cmake/Triangulation.code-workspace b/samples/Triangulation/proj/cmake/Triangulation.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Triangulation/proj/cmake/Triangulation.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Tubular/proj/cmake/Tubular.code-workspace b/samples/Tubular/proj/cmake/Tubular.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Tubular/proj/cmake/Tubular.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/VoronoiGpu/proj/cmake/VoronoiGpu.code-workspace b/samples/VoronoiGpu/proj/cmake/VoronoiGpu.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/VoronoiGpu/proj/cmake/VoronoiGpu.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/Wisteria/proj/cmake/Wisteria.code-workspace b/samples/Wisteria/proj/cmake/Wisteria.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/Wisteria/proj/cmake/Wisteria.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_audio/BufferPlayer/proj/cmake/BufferPlayer.code-workspace b/samples/_audio/BufferPlayer/proj/cmake/BufferPlayer.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_audio/BufferPlayer/proj/cmake/BufferPlayer.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_audio/DelayFeedback/proj/cmake/DelayFeedback.code-workspace b/samples/_audio/DelayFeedback/proj/cmake/DelayFeedback.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_audio/DelayFeedback/proj/cmake/DelayFeedback.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_audio/InputAnalyzer/proj/cmake/InputAnalyzer.code-workspace b/samples/_audio/InputAnalyzer/proj/cmake/InputAnalyzer.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_audio/InputAnalyzer/proj/cmake/InputAnalyzer.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_audio/MultichannelOutput/proj/cmake/MultichannelOutput.code-workspace b/samples/_audio/MultichannelOutput/proj/cmake/MultichannelOutput.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_audio/MultichannelOutput/proj/cmake/MultichannelOutput.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_audio/NodeAdvanced/proj/cmake/NodeAdvanced.code-workspace b/samples/_audio/NodeAdvanced/proj/cmake/NodeAdvanced.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_audio/NodeAdvanced/proj/cmake/NodeAdvanced.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_audio/NodeBasic/proj/cmake/NodeBasic.code-workspace b/samples/_audio/NodeBasic/proj/cmake/NodeBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_audio/NodeBasic/proj/cmake/NodeBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_audio/NodeSubclassing/proj/cmake/NodeSubclassing.code-workspace b/samples/_audio/NodeSubclassing/proj/cmake/NodeSubclassing.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_audio/NodeSubclassing/proj/cmake/NodeSubclassing.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_audio/VoiceBasic/proj/cmake/VoiceBasic.code-workspace b/samples/_audio/VoiceBasic/proj/cmake/VoiceBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_audio/VoiceBasic/proj/cmake/VoiceBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_audio/VoiceBasicProcessing/proj/cmake/VoiceBasicProcessing.code-workspace b/samples/_audio/VoiceBasicProcessing/proj/cmake/VoiceBasicProcessing.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_audio/VoiceBasicProcessing/proj/cmake/VoiceBasicProcessing.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/ClothSimulation/proj/cmake/ClothSimulation.code-workspace b/samples/_opengl/ClothSimulation/proj/cmake/ClothSimulation.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/ClothSimulation/proj/cmake/ClothSimulation.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/Cube/proj/cmake/Cube.code-workspace b/samples/_opengl/Cube/proj/cmake/Cube.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/Cube/proj/cmake/Cube.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/CubeMapping/proj/cmake/CubeMapping.code-workspace b/samples/_opengl/CubeMapping/proj/cmake/CubeMapping.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/CubeMapping/proj/cmake/CubeMapping.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/DeferredShading/proj/cmake/DeferredShading.code-workspace b/samples/_opengl/DeferredShading/proj/cmake/DeferredShading.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/DeferredShading/proj/cmake/DeferredShading.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/DeferredShadingAdvanced/proj/cmake/DeferredShadingAdvanced.code-workspace b/samples/_opengl/DeferredShadingAdvanced/proj/cmake/DeferredShadingAdvanced.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/DeferredShadingAdvanced/proj/cmake/DeferredShadingAdvanced.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/DynamicCubeMapping/proj/cmake/DynamicCubeMapping.code-workspace b/samples/_opengl/DynamicCubeMapping/proj/cmake/DynamicCubeMapping.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/DynamicCubeMapping/proj/cmake/DynamicCubeMapping.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/FboBasic/proj/cmake/FboBasic.code-workspace b/samples/_opengl/FboBasic/proj/cmake/FboBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/FboBasic/proj/cmake/FboBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/FboMultipleRenderTargets/proj/cmake/FboMultipleRenderTargets.code-workspace b/samples/_opengl/FboMultipleRenderTargets/proj/cmake/FboMultipleRenderTargets.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/FboMultipleRenderTargets/proj/cmake/FboMultipleRenderTargets.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/GeometryShaderBasic/proj/cmake/GeometryShaderBasic.code-workspace b/samples/_opengl/GeometryShaderBasic/proj/cmake/GeometryShaderBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/GeometryShaderBasic/proj/cmake/GeometryShaderBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/HighDynamicRange/proj/cmake/HighDynamicRange.code-workspace b/samples/_opengl/HighDynamicRange/proj/cmake/HighDynamicRange.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/HighDynamicRange/proj/cmake/HighDynamicRange.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/ImmediateMode/proj/cmake/ImmediateMode.code-workspace b/samples/_opengl/ImmediateMode/proj/cmake/ImmediateMode.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/ImmediateMode/proj/cmake/ImmediateMode.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/InstancedTeapots/proj/cmake/InstancedTeapots.code-workspace b/samples/_opengl/InstancedTeapots/proj/cmake/InstancedTeapots.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/InstancedTeapots/proj/cmake/InstancedTeapots.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/LevelOfDetailBasic/proj/cmake/CMakeLists.txt b/samples/_opengl/LevelOfDetailBasic/proj/cmake/CMakeLists.txt
new file mode 100644
index 0000000000..31df4bb0b0
--- /dev/null
+++ b/samples/_opengl/LevelOfDetailBasic/proj/cmake/CMakeLists.txt
@@ -0,0 +1,19 @@
+cmake_minimum_required( VERSION 2.8 FATAL_ERROR )
+set( CMAKE_VERBOSE_MAKEFILE ON )
+
+project( opengl-LevelOfDetailBaisc )
+
+get_filename_component( CINDER_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../../../.." ABSOLUTE )
+get_filename_component( SAMPLE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../" ABSOLUTE )
+
+include( "${CINDER_PATH}/proj/cmake/modules/cinderMakeApp.cmake" )
+
+set( SRC_FILES
+ ${SAMPLE_DIR}/src/LevelOfDetailBaiscApp.cpp
+)
+
+ci_make_app(
+ SOURCES ${SRC_FILES}
+ CINDER_PATH ${CINDER_PATH}
+ INCLUDES ${SAMPLE_DIR}/include
+)
diff --git a/samples/_opengl/LevelOfDetailBasic/proj/cmake/LevelOfDetailBasic.code-workspace b/samples/_opengl/LevelOfDetailBasic/proj/cmake/LevelOfDetailBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/LevelOfDetailBasic/proj/cmake/LevelOfDetailBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/LevelOfDetailIndirect/proj/cmake/LevelOfDetailIndirect.code-workspace b/samples/_opengl/LevelOfDetailIndirect/proj/cmake/LevelOfDetailIndirect.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/LevelOfDetailIndirect/proj/cmake/LevelOfDetailIndirect.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/MipMap/proj/cmake/MipMap.code-workspace b/samples/_opengl/MipMap/proj/cmake/MipMap.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/MipMap/proj/cmake/MipMap.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/MotionBlurFbo/proj/cmake/MotionBlurFbo.code-workspace b/samples/_opengl/MotionBlurFbo/proj/cmake/MotionBlurFbo.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/MotionBlurFbo/proj/cmake/MotionBlurFbo.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/MotionBlurVelocityBuffer/proj/cmake/MotionBlurVelocityBuffer.code-workspace b/samples/_opengl/MotionBlurVelocityBuffer/proj/cmake/MotionBlurVelocityBuffer.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/MotionBlurVelocityBuffer/proj/cmake/MotionBlurVelocityBuffer.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/NVidiaComputeParticles/proj/cmake/NVidiaComputeParticles.code-workspace b/samples/_opengl/NVidiaComputeParticles/proj/cmake/NVidiaComputeParticles.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/NVidiaComputeParticles/proj/cmake/NVidiaComputeParticles.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/NormalMapping/proj/cmake/NormalMapping.code-workspace b/samples/_opengl/NormalMapping/proj/cmake/NormalMapping.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/NormalMapping/proj/cmake/NormalMapping.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/NormalMappingBasic/proj/cmake/NormalMappingBasic.code-workspace b/samples/_opengl/NormalMappingBasic/proj/cmake/NormalMappingBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/NormalMappingBasic/proj/cmake/NormalMappingBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/NvidiaMulticast/proj/cmake/NvidiaMulticast.code-workspace b/samples/_opengl/NvidiaMulticast/proj/cmake/NvidiaMulticast.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/NvidiaMulticast/proj/cmake/NvidiaMulticast.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/ObjLoader/proj/cmake/ObjLoader.code-workspace b/samples/_opengl/ObjLoader/proj/cmake/ObjLoader.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/ObjLoader/proj/cmake/ObjLoader.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/PBOReadBack/proj/cmake/PBOReadBack.code-workspace b/samples/_opengl/PBOReadBack/proj/cmake/PBOReadBack.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/PBOReadBack/proj/cmake/PBOReadBack.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/ParticleSphereCPU/proj/cmake/ParticleSphereCPU.code-workspace b/samples/_opengl/ParticleSphereCPU/proj/cmake/ParticleSphereCPU.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/ParticleSphereCPU/proj/cmake/ParticleSphereCPU.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/ParticleSphereCS/proj/cmake/ParticleSphereCS.code-workspace b/samples/_opengl/ParticleSphereCS/proj/cmake/ParticleSphereCS.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/ParticleSphereCS/proj/cmake/ParticleSphereCS.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/ParticleSphereGPU/proj/cmake/ParticleSphereGPU.code-workspace b/samples/_opengl/ParticleSphereGPU/proj/cmake/ParticleSphereGPU.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/ParticleSphereGPU/proj/cmake/ParticleSphereGPU.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/ParticlesBasic/proj/cmake/ParticlesBasic.code-workspace b/samples/_opengl/ParticlesBasic/proj/cmake/ParticlesBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/ParticlesBasic/proj/cmake/ParticlesBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/PickingFBO/proj/cmake/PickingFBO.code-workspace b/samples/_opengl/PickingFBO/proj/cmake/PickingFBO.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/PickingFBO/proj/cmake/PickingFBO.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/PostProcessingAA/proj/cmake/PostProcessingAA.code-workspace b/samples/_opengl/PostProcessingAA/proj/cmake/PostProcessingAA.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/PostProcessingAA/proj/cmake/PostProcessingAA.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/ShadowMapping/proj/cmake/ShadowMapping.code-workspace b/samples/_opengl/ShadowMapping/proj/cmake/ShadowMapping.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/ShadowMapping/proj/cmake/ShadowMapping.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/ShadowMappingBasic/proj/cmake/ShadowMappingBasic.code-workspace b/samples/_opengl/ShadowMappingBasic/proj/cmake/ShadowMappingBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/ShadowMappingBasic/proj/cmake/ShadowMappingBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/StencilReflection/proj/cmake/StencilReflection.code-workspace b/samples/_opengl/StencilReflection/proj/cmake/StencilReflection.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/StencilReflection/proj/cmake/StencilReflection.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/SuperformulaGPU/proj/cmake/SuperformulaGPU.code-workspace b/samples/_opengl/SuperformulaGPU/proj/cmake/SuperformulaGPU.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/SuperformulaGPU/proj/cmake/SuperformulaGPU.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/TessellationBasic/proj/cmake/TessellationBasic.code-workspace b/samples/_opengl/TessellationBasic/proj/cmake/TessellationBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/TessellationBasic/proj/cmake/TessellationBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/TessellationBezier/proj/cmake/TessellationBezier.code-workspace b/samples/_opengl/TessellationBezier/proj/cmake/TessellationBezier.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/TessellationBezier/proj/cmake/TessellationBezier.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/TransformFeedbackSmokeParticles/proj/cmake/TransformFeedbackSmokeParticles.code-workspace b/samples/_opengl/TransformFeedbackSmokeParticles/proj/cmake/TransformFeedbackSmokeParticles.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/TransformFeedbackSmokeParticles/proj/cmake/TransformFeedbackSmokeParticles.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_opengl/VboMesh/proj/cmake/VboMesh.code-workspace b/samples/_opengl/VboMesh/proj/cmake/VboMesh.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_opengl/VboMesh/proj/cmake/VboMesh.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_svg/AnimatedReveal/proj/cmake/AnimatedReveal.code-workspace b/samples/_svg/AnimatedReveal/proj/cmake/AnimatedReveal.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_svg/AnimatedReveal/proj/cmake/AnimatedReveal.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_svg/EuroMap/proj/cmake/EuroMap.code-workspace b/samples/_svg/EuroMap/proj/cmake/EuroMap.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_svg/EuroMap/proj/cmake/EuroMap.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_svg/GoodNightMorning/proj/cmake/GoodNightMorning.code-workspace b/samples/_svg/GoodNightMorning/proj/cmake/GoodNightMorning.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_svg/GoodNightMorning/proj/cmake/GoodNightMorning.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_svg/SimpleViewer/proj/cmake/SimpleViewer.code-workspace b/samples/_svg/SimpleViewer/proj/cmake/SimpleViewer.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_svg/SimpleViewer/proj/cmake/SimpleViewer.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_timeline/BasicAppendTween/proj/cmake/BasicAppendTween.code-workspace b/samples/_timeline/BasicAppendTween/proj/cmake/BasicAppendTween.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_timeline/BasicAppendTween/proj/cmake/BasicAppendTween.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_timeline/BasicTween/proj/cmake/BasicTween.code-workspace b/samples/_timeline/BasicTween/proj/cmake/BasicTween.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_timeline/BasicTween/proj/cmake/BasicTween.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_timeline/CustomCallback/proj/cmake/CustomCallback.code-workspace b/samples/_timeline/CustomCallback/proj/cmake/CustomCallback.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_timeline/CustomCallback/proj/cmake/CustomCallback.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_timeline/CustomLerp/proj/cmake/CustomLerp.code-workspace b/samples/_timeline/CustomLerp/proj/cmake/CustomLerp.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_timeline/CustomLerp/proj/cmake/CustomLerp.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_timeline/DragTween/proj/cmake/DragTween.code-workspace b/samples/_timeline/DragTween/proj/cmake/DragTween.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_timeline/DragTween/proj/cmake/DragTween.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_timeline/ImageAccordion/proj/cmake/ImageAccordion.code-workspace b/samples/_timeline/ImageAccordion/proj/cmake/ImageAccordion.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_timeline/ImageAccordion/proj/cmake/ImageAccordion.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_timeline/PaletteBrowser/proj/cmake/PaletteBrowser.code-workspace b/samples/_timeline/PaletteBrowser/proj/cmake/PaletteBrowser.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_timeline/PaletteBrowser/proj/cmake/PaletteBrowser.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_timeline/TextInputTween/proj/cmake/TextInputTween.code-workspace b/samples/_timeline/TextInputTween/proj/cmake/TextInputTween.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_timeline/TextInputTween/proj/cmake/TextInputTween.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/_timeline/VisualDictionary/proj/cmake/VisualDictionary.code-workspace b/samples/_timeline/VisualDictionary/proj/cmake/VisualDictionary.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/_timeline/VisualDictionary/proj/cmake/VisualDictionary.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/perlinTest/proj/cmake/perlinTest.code-workspace b/samples/perlinTest/proj/cmake/perlinTest.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/perlinTest/proj/cmake/perlinTest.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}
diff --git a/samples/slerpBasic/proj/cmake/slerpBasic.code-workspace b/samples/slerpBasic/proj/cmake/slerpBasic.code-workspace
new file mode 100644
index 0000000000..728fd03235
--- /dev/null
+++ b/samples/slerpBasic/proj/cmake/slerpBasic.code-workspace
@@ -0,0 +1,12 @@
+{
+ "folders": [
+ {
+ "path": "../../."
+ }
+ ],
+ "settings": {
+ "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
+ "cmake.sourceDirectory": "${workspaceFolder}/proj/cmake",
+ "cmake.buildDirectory": "${workspaceFolder}/proj/cmake/build"
+ }
+}