You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/build.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -189,11 +189,11 @@ Test project /Users/sabrih/Desktop/workspace/build/Debug/plugin/al
189
189
190
190
##### Boost:
191
191
192
-
Currently the Animal Logic plugin has a dependency on some of the boost components ( e.g thread, filesystem ). When building Pixar USD, one needs to pass the following key,value paired arguments for boost to include those components:
192
+
Currently the Animal Logic plugin has a dependency on some of the boost components. When building Pixar USD, one needs to pass the following key,value paired arguments for boost to include those components:
Copy file name to clipboardexpand all lines: doc/codingGuidelines.md
+5-2
Original file line number
Diff line number
Diff line change
@@ -222,10 +222,13 @@ Recent extensions to the C++ standard introduce many features previously only fo
222
222
Our library currently has the following boost dependencies:
223
223
*`boost::python`
224
224
*`boost::hash_combine` (see [this proposal](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0814r0.pdf) )
225
-
*`boost::filesystem` (preferable to replace with Pixar USD arch/fileSystem)
226
-
*`boost::system`
227
225
*`boost::make_shared` (preferable to replace with `std::shared_ptr`)
228
226
227
+
***Update:***
228
+
*`boost::filesystem` and `boost::system` are removed. Until the transition to C++17 std::filesystem, [ghc::filesystem](https://github.com/gulrak/filesystem) must be used as an alternative across the project.
229
+
230
+
* Dependency on `boost::thread` is removed from Animal Logic plugin.
231
+
229
232
## Modern C++
230
233
Our goal is to develop [maya-usd](https://github.com/autodesk/maya-usd) following modern C++ practices. We’ll follow the [C++ Core Guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) and pay attention to:
0 commit comments