Hello,
I was using CodeBlocks for sometime. But I change it to CodeLite. I liked it, quite good software. But there are very limited info on internet regarding setting up Libraries. Actually there is nothing almost.
Kindly is there any detailed instruction to setup SDL library to CodeLite for Windows 64b? Thank you already.
SDL installization
-
- CodeLite Curious
- Posts: 1
- Joined: Fri Dec 14, 2018 2:59 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: SDL installization
Open the project settings:
Compiler->Include paths : set here the paths to find the header file of your SDL library
Linker->Libraries search paths : set here the paths to find the .dll, .so and .a libraries of the SDL library
Linker->Libraries : set here the names of the libraries (there is no need to add the .a / .dll or any "lib" prefix)
You can read more about it here:
https://wiki.codelite.org/pmwiki.php/Ma ... ngsSummary
Compiler->Include paths : set here the paths to find the header file of your SDL library
Linker->Libraries search paths : set here the paths to find the .dll, .so and .a libraries of the SDL library
Linker->Libraries : set here the names of the libraries (there is no need to add the .a / .dll or any "lib" prefix)
You can read more about it here:
https://wiki.codelite.org/pmwiki.php/Ma ... ngsSummary
Make sure you have read the HOW TO POST thread