Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CMAKE on Windows Linker Errors #30

Open
petersrich opened this issue Jul 17, 2013 · 0 comments
Open

CMAKE on Windows Linker Errors #30

petersrich opened this issue Jul 17, 2013 · 0 comments

Comments

@petersrich
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant