Skip to content

CMAKE on Windows Linker Errors #30

@petersrich

Description

@petersrich

I had a linker error with nmake and it took hours to figure out how to fix this.

It tried to build dynamic libraries by linking against static boost libs.
Please have a look at these two files:

chemkit/CMakelists.txt (line 13):

if(WIN32)
set(Boost_USE_STATIC_LIBS ON)
endif()

chemkit/src/CMakelists.txt (line 8):

add_library(${library_name} DYNAMIC ${ARGN})

When i switch this from SHARED to STATIC, building with static boost libs works
properly for the core library, but not for the plugins.

The only way to compile the library is to manualy change the boost librarys per file
by removing the "lib" from "libboost..." filenames in the cmake-gui, but than the projects
depends on the boost-dll's.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions