Intermediate directory compiling
Posted: Mon Nov 23, 2009 4:20 pm
Hi,
Great ide
I'm working now with version 3399 compiled from svn on a linux amd64, with ubuntu 9.04
I've compiled from source code due to http://codelite.org/forum/viewtopic.php?f=3&t=662#p2900 (I have to test this fix)
I have a project with some files outside my project path
I'd like to generate all objs in my project tree
I tryed with.... Project|setings|general|intermediate directory
But the mak file generated has...
Objects=../../../../../src/my_dir/$(IntermediateDirectory)/my_file$(ObjectSuffix)
And same for objects and clean
##
## Objects
##
##
## Clean
##
It works fine, but I'd like to put all the objects in my project tree instead of creating Debug and Release folders on many places
I think it would be better in this way...
Objects=$(IntermediateDirectory)/my_file$(ObjectSuffix)
and is how in previus version worked
kind regards
Great ide
I'm working now with version 3399 compiled from svn on a linux amd64, with ubuntu 9.04
I've compiled from source code due to http://codelite.org/forum/viewtopic.php?f=3&t=662#p2900 (I have to test this fix)
I have a project with some files outside my project path
I'd like to generate all objs in my project tree
I tryed with.... Project|setings|general|intermediate directory
But the mak file generated has...
Objects=../../../../../src/my_dir/$(IntermediateDirectory)/my_file$(ObjectSuffix)
And same for objects and clean
##
## Objects
##
##
## Clean
##
It works fine, but I'd like to put all the objects in my project tree instead of creating Debug and Release folders on many places
I think it would be better in this way...
Objects=$(IntermediateDirectory)/my_file$(ObjectSuffix)
and is how in previus version worked
kind regards