ResInsight is split into several libraries that are linked into ResInsight. The libraries are defined using the OBJECT type
add_library(${PROJECT_NAME} OBJECT ${ALL_SOURCE_FILES})
Class view information is not displayed correctly in Visual Studio when using this concept. Consider replace with STATIC for all libraries linked with the ResInsight target. Testing revealed a required the following to be added
Q_INIT_RESOURCE( ApplicationLibCode );
to main() in RiaMain.cpp
Some examples when the OBJECT keyword was introduced:
77ef87f
01921a5
ResInsight is split into several libraries that are linked into ResInsight. The libraries are defined using the OBJECT type
Class view information is not displayed correctly in Visual Studio when using this concept. Consider replace with STATIC for all libraries linked with the ResInsight target. Testing revealed a required the following to be added
to
main()inRiaMain.cppSome examples when the
OBJECTkeyword was introduced:77ef87f
01921a5