Skip to content

Commit

Permalink
turn all wave libraries that link against wave_common into standalone…
Browse files Browse the repository at this point in the history
… libraries
  • Loading branch information
assignUser committed Oct 23, 2024
1 parent 774929d commit 0b279eb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions velox/experimental/wave/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

velox_add_library(
add_library(
velox_wave_common
GpuArena.cpp
Buffer.cpp
Expand All @@ -23,7 +23,7 @@ velox_add_library(
Type.cpp
ResultStaging.cpp)

velox_link_libraries(
target_link_libraries(
velox_wave_common
velox_exception
velox_common_base
Expand Down
4 changes: 2 additions & 2 deletions velox/experimental/wave/dwio/decode/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@

add_subdirectory(tests)

velox_add_library(velox_wave_decode GpuDecoder.cu)
add_library(velox_wave_decode GpuDecoder.cu)

velox_link_libraries(velox_wave_decode velox_wave_common)
target_link_libraries(velox_wave_decode velox_wave_common)
8 changes: 4 additions & 4 deletions velox/experimental/wave/exec/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.

velox_add_library(velox_wave_stream OperandSet.cpp Wave.cpp)
add_library(velox_wave_stream OperandSet.cpp Wave.cpp)

velox_link_libraries(velox_wave_stream Folly::folly fmt::fmt xsimd)
target_link_libraries(velox_wave_stream Folly::folly fmt::fmt xsimd)

velox_add_library(
add_library(
velox_wave_exec
Aggregation.cpp
AggregationInstructions.cu
Expand All @@ -34,7 +34,7 @@ velox_add_library(
WaveHiveDataSource.cpp
WaveSplitReader.cpp)

velox_link_libraries(
target_link_libraries(
velox_wave_exec
velox_wave_vector
velox_wave_common
Expand Down

0 comments on commit 0b279eb

Please sign in to comment.