You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CCI should support dll compilation on windows. For now even i set cmake parameter BUILD_SHARED_LIBS on command line, there are several issues.
top CMakeLists.txt line 228, there is a syntax error in set (BUILD_SHARED_LIBS OFF CACHE BOOL "Build shared libraries." FORCE)
if comment out the line 226-228, there are still unresolved symbol error during linking/build time, suggest to add following
set_target_properties(cci PROPERTIES
WINDOWS_EXPORT_ALL_SYMBOLS TRUE
POSITION_INDEPENDENT_CODE ON
)
The text was updated successfully, but these errors were encountered:
CCI should support dll compilation on windows. For now even i set cmake parameter BUILD_SHARED_LIBS on command line, there are several issues.
set_target_properties(cci PROPERTIES
WINDOWS_EXPORT_ALL_SYMBOLS TRUE
POSITION_INDEPENDENT_CODE ON
)
The text was updated successfully, but these errors were encountered: