LNK 2001 when compiling Cantera C++ Code in Visual Studio 2019

35 Views Asked by At

I'm trying to run the test code on the Cantera website in Visual Studio 2019 but get the following error:

error LNK2001: unresolved external symbol "class std::shared_ptr<class Cantera::Solution> __cdecl Cantera::newSolution(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::vector<class std::shared_ptr<class Cantera::Solution>,class std::allocator<class std::shared_ptr<class Cantera::Solution> > > const &)" (?newSolution@Cantera@@YA?AV?$shared_ptr@VSolution@Cantera@@@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@00AEBV?$vector@V?$shared_ptr@VSolution@Cantera@@@std@@V?$allocator@V?$shared_ptr@VSolution@Cantera@@@std@@@2@@3@@Z)
#include "cantera/base/Solution.h"
#include "cantera/thermo.h"
#include <iostream>

using namespace Cantera;

// The actual code is put into a function that can be called from the main program.
void simple_demo()
{
    // Create a new Solution object
    auto sol = newSolution("h2o2.yaml", "ohmech", "None");
    auto gas = sol->thermo();

    // Set the thermodynamic state by specifying T (500 K) P (2 atm) and the mole
    // fractions. Note that the mole fractions do not need to sum to 1.0 - they will
    // be normalized internally. Also, the values for any unspecified species will be
    // set to zero.
    gas->setState_TPX(500.0, 2.0 * OneAtm, "H2O:1.0, H2:8.0, AR:1.0");

    // Print a summary report of the state of the gas.
    std::cout << gas->report() << std::endl;
}

// The main program just calls function simple_demo within a 'try' block, and catches
// CanteraError exceptions that might be thrown.
int main()
{
    try {
        simple_demo();
    }
    catch (CanteraError& err) {
        std::cout << err.what() << std::endl;
    }
}

I thought it was a library related issue but when when I run scons on the samples using the same library links the sample code runs successfully

0

There are 0 best solutions below