Help needed: libasm and others are not found (kdeedu/Kalzium)
Carsten Niehaus
cniehaus at gmx.de
Sat Jan 20 16:09:50 CET 2007
Am Samstag, 20. Januar 2007 00:40 schrieb Alexander Neundorf:
> find_library(ASMRUN_LIBRARY NAMES asmrun PATH_SUFFIXES ocaml)
Ok, this is how my patch looks like... It works on my system.
if(LIBFACILE_FOUND)
- target_link_libraries(kalzium asmrun str nums m dl)
+ find_library(ASMRUN_LIBRARY NAMES asmrun PATH_SUFFIXES ocaml)
+ find_library(STR_LIBRARY NAMES str PATH_SUFFIXES ocaml)
+ find_library(NUMS_LIBRARY NAMES nums PATH_SUFFIXES ocaml)
+ find_library(M_LIBRARY NAMES m PATH_SUFFIXES ocaml)
+ find_library(DL_LIBRARY NAMES dl PATH_SUFFIXES ocaml)
+ target_link_libraries(kalzium
+ ${ASMRUN_LIBRARY}
+ ${STR_LIBRARY}
+ ${NUMS_LIBRARY}
+ ${M_LIBRARY}
+ ${DL_LIBRARY}
+ )
endif(LIBFACILE_FOUND)
Is that ok?
Carsten
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://mail.kde.org/pipermail/kde-buildsystem/attachments/20070120/e5e64601/attachment.pgp
More information about the Kde-buildsystem
mailing list