Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
In BUILD it is:
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCONC_WITH_UNIT_TESTS=Off -DCONC_WITH_MSI=OFF -DWITH_SSL=SCHANNEL .
cmake --build . --config RelWithDebInfo
The reason is that C/C is was compiled with /MD, while C/C++ w/ /MT. Addin C to LANGUAGES in C/C++ PROJECT fixes that.
The 2nd problem would occur if BINARY and SRC directories are different. Tests cannot find generated header in such case.