Error in ARX build for IJCAD

Asked 1 years ago, Updated 1 years ago, 78 views

Thank you for your help.I am developing using GRX of IJCAD.
IJCAD uses the plot output function to create a program that outputs preview images to PNG files.When you build it,

ERROR 13 ERROR LNK 2019: Unresolved external symbol "_declspec(dllimport) public: void__cdecl GcPlPlPlotInfoValidator::setMediaMatchingPolicy (enum GcPlPlPlotInfoValidator::MatchingPolicy)" (long, abbreviated below)

What should I do if I get a lot of errors like this?

ijcad

2022-09-30 10:19

1 Answers

It seems that there is an error in the GcPl class.In this case, adding "gplt.lib" to the link should solve the problem.Specifically, try one of the following:

1. Add gplt.lib to Linker → Input → Additional Dependency Files from Project Properties in Visual Studio

2. Add the following sentence to the source code.
# pragma comment(lib, "gplt.lib")


2022-09-30 10:19

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.