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
Summary:
Pull Request resolved: #150
Split out `portable_kernels_bindings` library build code from root `CMakeLists.txt` to `kernels/portable/CMakeLists.txt`. This makes the root `CMakeLists.txt` a bit simpler.
Also making the linker options a bit more portable.
Reviewed By: huydhn
Differential Revision: D48712541
fbshipit-source-id: f7ac8b10bb7c2794cf9260120fe36ddaf6d08dec
Copy file name to clipboardExpand all lines: build/Utils.cmake
+62-27Lines changed: 62 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -4,39 +4,74 @@
4
4
# This source code is licensed under the BSD-style license found in the
5
5
# LICENSE file in the root directory of this source tree.
6
6
7
-
# This file is intended to have helper functions to keep the CMakeLists.txt concise. If there are any helper function can be re-used, it's recommented to add them here.
7
+
# This file is intended to have helper functions to keep the CMakeLists.txt
8
+
# concise. If there are any helper function can be re-used, it's recommented to
9
+
# add them here.
8
10
9
-
10
-
# Public function to print summary for all configurations. For new variable, it's recommended to add them here.
11
+
# Public function to print summary for all configurations. For new variable,
0 commit comments