set(tool_exe_name CheckpointToCSV) add_executable(${tool_exe_name}) target_sources(${tool_exe_name} PRIVATE CheckpointToCSV.cpp CheckpointFileUtil.cpp) target_include_directories(${tool_exe_name} PRIVATE $) target_link_libraries(${tool_exe_name} PRIVATE ${amr_wind_lib_name} AMReX-Hydro::amrex_hydro_api) if (AMR_WIND_ENABLE_W2A) target_link_libraries(${tool_exe_name} PRIVATE Waves2AMR::Waves2AMR) endif() set_cuda_build_properties(${tool_exe_name}) install(TARGETS ${tool_exe_name})