Hi,
Is it possible to use precompiled headers with MSVC? I didn't manage to make them work.
Precompiled headers with MSVC
-
- CodeLite Curious
- Posts: 2
- Joined: Sat Mar 13, 2010 4:29 pm
- 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: Precompiled headers with MSVC
No, it is not possible.
To be honest, codelite was meant to work with g++ - and I don't think it will be supported (unless a patch is provided)
You could workaround it by using the 'Custom Makefile Steps' tab in the project settings.
This should give you a good starting point of how to use this:
http://codelite.org/LiteEditor/ProjectSettingsSummary (search for 'Custom Makefile Steps')
Eran
To be honest, codelite was meant to work with g++ - and I don't think it will be supported (unless a patch is provided)
You could workaround it by using the 'Custom Makefile Steps' tab in the project settings.
This should give you a good starting point of how to use this:
http://codelite.org/LiteEditor/ProjectSettingsSummary (search for 'Custom Makefile Steps')
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 2
- Joined: Sat Mar 13, 2010 4:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Precompiled headers with MSVC
I'll take a look at it. Thanks.