Unable to link NLohmann json library using cmake

1.5k Views Asked by At

I am trying to link the NLohmann json library to my json interpreter via cmake.

I keep getting the error : fatal error: 'nlohmann/json.hpp' file not found #include <nlohmann/json.hpp>

From the file :

#include <nlohmann/json.hpp>
#include <fstream>
#include "InterpretJson.h"
#include "game.h"
using namespace std;
using json = nlohmann::json;

InterpretJson(string path){
    this->path = path;
    ifstream f(path);
    json jData = json::parse(f);
    f.close();
    this->data = jData;
}

Game interpret(Game& game){}

The CMakeLists.txt in the directory which contains src/interpretJson.cpp and include/interpretJson.h.:

find_package(nlohmann_json 3.2.0 REQUIRED)

add_library(interpreter
    src/interpretJson.cpp
)


target_include_directories(interpreter
    PUBLIC
        $<INSTALL_INTERFACE:include>
        $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
    PRIVATE
        ${CMAKE_CURRENT_SOURCE_DIR}/src
        ${nlohmann_json_INCLUDE_DIR}
)

target_link_libraries(interpreter
    PRIVATE 
        ${nlohmann_json_LIBRARIES}
)

set_target_properties(interpreter
                    PROPERTIES
                    LINKER_LANGUAGE CXX
                    CXX_STANDARD 17
)

install(TARGETS interpreter
    ARCHIVE DESTINATION lib
)

How do I fix this?

Edit: This is issue is only happening on arm64 Mac M1 but it is working fine on a linux ubuntu VM. However, the vm is slow and I would still like to know how to make it work on Mac

1

There are 1 best solutions below

0
On

I have this in my CMakeLists.txt

FetchContent_Declare(
        nlohmann
        GIT_REPOSITORY  "https://github.com/onavratil-monetplus/json"
        GIT_TAG         "master"
)

FetchContent_MakeAvailable( nlohmann )
target_include_directories ( main PUBLIC ${nlohmann_json_SOURCE_DIR}/include )

and in src file ...

#include "nlohmann/json.hpp"