mirror of https://github.com/ecmwf/eccodes.git
C++ Migration: Compile on MacOS
This commit is contained in:
parent
0a9ce2e35c
commit
7f06564863
|
@ -15,8 +15,8 @@ set(converted_accessor_data_dir ${CMAKE_CURRENT_LIST_DIR})
|
|||
# Note the PARENT_SCOPE option sets the variable in the calling CMakeLists.txt
|
||||
# file - it remains undefined in this file: https://cmake.org/cmake/help/latest/command/set.html
|
||||
set(converted_accessor_data_src_files
|
||||
${converted_accessor_data_dir}/CodeflagData.cc
|
||||
${converted_accessor_data_dir}/CodeflagData.h
|
||||
#${converted_accessor_data_dir}/CodeflagData.cc
|
||||
#${converted_accessor_data_dir}/CodeflagData.h
|
||||
${converted_accessor_data_dir}/UnsignedData.cc
|
||||
${converted_accessor_data_dir}/UnsignedData.h
|
||||
${converted_accessor_data_dir}/LongData.cc
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#undef UNDERFLOW
|
||||
|
||||
namespace eccodes::accessor {
|
||||
|
||||
enum class GribStatus{
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <sstream>
|
||||
|
||||
namespace eccodes::accessor {
|
||||
|
||||
|
|
Loading…
Reference in New Issue