CVPACK Fatal Error CK1017
cannot find precompiled types file; relink with filename
The program used a precompiled header, but the program was linked without filename. This file is the object file that was created when the header was precompiled. If the program uses a library that was created using precompiled headers, then filename was not linked from the library.
One of the following may be a solution:
-
Extract the object from the library and link it to the program explicitly.
-
Force LINK to include the object in the program by specifying the /INCLUDE option with a symbol from the object.
-
Change the source code so that code or data in filename is referenced either from an object file that uses the library or from another module that is being linked from the library.