# Download GSL 1.11 from this link
http://david.geldreich.free.fr/dev.html
# How to setup in VC++2008
1. open VC++
2. make a win32 project
3. Go to Tools->Options->Projects and Solutions->VC++ Directories
Show directories for : Include files => put a path to the include directory of GSL
Show directories for: Lib files => put a path to the lib directory of GSL
4. Press OK
5. Go to Project-> [Myproject] Properties
- For All Configurations
(1) Go to Configuration Properties->C/C++ ->General->Additional Include Directories
(2) put a path to the include direc. of GSL
(3) Go to Linker-> General->Additional Lib Directories
(4) put a path to the lib direc. of GSL
(5) Press Apply
- For Debug Configuration
(1) Go to Configuration Properities->C/C++->Code Generation->Runtime Library
(2) use /MDd
(3) Go to Linker->Input->Additional Dependencies
(4) put "cblas_d.lib gsl_d.lib"
(5) Press Apply
-For Release Configuration
(1) Go to Configuration Properities->C/C++->Code Generation->Runtime Library
(2) use /MD
(3) Go to Linker->Input->Additional Dependencies
(4) put "cblas.lib gsl.lib"
(5) Press Apply
Cheers, mate!
ReplyDelete