Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/src/cpptcl/CMakeLists.txt @ 2579

Last change on this file since 2579 was 2579, checked in by rgrieder, 15 years ago
  • Equipped find scripts with debug/optimized functions. If you have different debug prefixes on your platform simply change ${LIBRARY_DEBUG_POSTFIX} ("_d" default).
  • Clean up in ConfigMSVC.cmake and ConfigMinGW.cmake
  • Also had a good look at the MinGW libraries according to the libs_1889_mingw.zip (no warranty at all, hope I got them all)
  • INSTALL commands are currently limited to non Windows platforms (don't yet know why it doesn't work)
  • Property svn:eol-style set to native
File size: 194 bytes
Line 
1ADD_LIBRARY(cpptcl_orxonox SHARED CppTcl.cc)
2
3TARGET_LINK_LIBRARIES(cpptcl_orxonox
4  ${TCL_LIBRARY}
5)
6
7IF (NOT WIN32)
8  INSTALL(TARGETS cpptcl_orxonox LIBRARY DESTINATION lib)
9ENDIF (NOT WIN32)
Note: See TracBrowser for help on using the repository browser.