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
message(FATAL_ERROR"flamegpu_enable_languages must be called after a call to 'project()'")
40
33
endif()
41
34
35
+
# Define some local variables in macro-scope so they are available when required (when included by other projects, i.e. templates)
36
+
# Define the minimum supported CUDA and HIP versions
37
+
set(MINIMUM_SUPPORTED_CUDA_VERSION 12.4)
38
+
set(MINIMUM_SUPPORTED_HIP_VERSION 7.0) # patch version differs from the rocm package
39
+
# Set the std which is used in compilation testing examples
40
+
set(_flamegpu_cxx_std 20)
41
+
42
42
# Check for Host and Device compiler support if not in an intentional documentation-only build
43
43
if (NOT${FLAMEGPU_GPU}STREQUAL"OFF")
44
44
# Get the currently enabled languages, so that if a parent project has HIP enabled but FLAMEGPU is configured for CUDA we can raise an appropriate warning/error
0 commit comments