Skip to content

Commit 3e059b5

Browse files
committed
Removed unused cmake vars
1 parent 0455cdf commit 3e059b5

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

CMakeLists.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,9 @@ message(STATUS "Configuring haero v${HAERO_VERSION}")
5555
# Precision of floating point numbers.
5656
if (HAERO_PRECISION STREQUAL "single")
5757
set(HAERO_REAL_TYPE "float")
58-
set(HAERO_REAL_KIND "sp")
5958
set(HAERO_DOUBLE_PRECISION 0)
6059
elseif(HAERO_PRECISION STREQUAL "double")
6160
set(HAERO_REAL_TYPE "double")
62-
set(HAERO_REAL_KIND "dp")
6361
set(HAERO_DOUBLE_PRECISION 1)
6462
elseif(HAERO_PRECISION)
6563
message(FATAL_ERROR "Invalid HAERO_PRECISION: ${HAERO_PRECISION} (use 'single' or 'double')")
@@ -202,10 +200,6 @@ if (HAERO_ENABLE_GPU)
202200
endif()
203201
list(REMOVE_DUPLICATES HAERO_LIBRARIES)
204202

205-
# Record the libraries we've gathered so far as the "base" libraries that
206-
# we need. We use this for efficiently linking unit tests.
207-
set(HAERO_BASE_LIBRARIES ${HAERO_LIBRARIES})
208-
209203
# Include the binary directory in the header file search path,
210204
# since it's where we place the third-party libraries.
211205
include_directories("${PROJECT_BINARY_DIR}")

0 commit comments

Comments
 (0)