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
|
# 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
|
# file - it remains undefined in this file: https://cmake.org/cmake/help/latest/command/set.html
|
||||||
set(converted_accessor_data_src_files
|
set(converted_accessor_data_src_files
|
||||||
${converted_accessor_data_dir}/CodeflagData.cc
|
#${converted_accessor_data_dir}/CodeflagData.cc
|
||||||
${converted_accessor_data_dir}/CodeflagData.h
|
#${converted_accessor_data_dir}/CodeflagData.h
|
||||||
${converted_accessor_data_dir}/UnsignedData.cc
|
${converted_accessor_data_dir}/UnsignedData.cc
|
||||||
${converted_accessor_data_dir}/UnsignedData.h
|
${converted_accessor_data_dir}/UnsignedData.h
|
||||||
${converted_accessor_data_dir}/LongData.cc
|
${converted_accessor_data_dir}/LongData.cc
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#undef UNDERFLOW
|
||||||
|
|
||||||
namespace eccodes::accessor {
|
namespace eccodes::accessor {
|
||||||
|
|
||||||
enum class GribStatus{
|
enum class GribStatus{
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <sstream>
|
||||||
|
|
||||||
namespace eccodes::accessor {
|
namespace eccodes::accessor {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue