Re: [CMake] Built-in way to detect if a root script is standalone or not?

2017-07-17 Thread Robert Maynard
That is about the easiest way to check if you are standalone. On Mon, Jul 17, 2017 at 10:58 AM, Robert Dailey wrote: > I have logic similar to this in some of my middleware libraries' root > CMakeLists.txt: > > if( CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR ) >

[CMake] Built-in way to detect if a root script is standalone or not?

2017-07-17 Thread Robert Dailey
I have logic similar to this in some of my middleware libraries' root CMakeLists.txt: if( CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR ) set( STANDALONE TRUE ) endif() Is there a built-in way to detect this? -- Powered by www.kitware.com Please keep messages on-topic and check the