Re: [CMake] file-glob question

2008-11-10 Thread Eric NOULARD
Le Mon, 10 Nov 2008 12:36:04 +0100, "Steven Van Ingelgem" <[EMAIL PROTECTED]> a écrit : > Hi all, > > > I'm trying to do the following: > > file(GLOB PLUGINS plugins/*) > > This returns all the absolute paths to the plugins. Which is fine. > > But, when I try: > > file(GLOB PLUGINS RELATIVE

[CMake] file-glob question

2008-11-10 Thread Steven Van Ingelgem
Hi all, I'm trying to do the following: file(GLOB PLUGINS plugins/*) This returns all the absolute paths to the plugins. Which is fine. But, when I try: file(GLOB PLUGINS RELATIVE plugins/*) It gives me an error about "file GLOB requires a glob expression after the directory" Is this a bug