Commit 56ce938e authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Reorganization - moved examples into src

parent 365229b4
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -422,15 +422,9 @@ INCLUDE_DIRECTORIES( ${PROJECT_BUILD_PATH} )
LINK_DIRECTORIES( ${LIBRARY_OUTPUT_PATH} )

# Add all subdirectories
# Note that it is important to start building examples as soon as possible,
# because they take the longest time and other stuff can be pipelined before
# they are finished (at least with Ninja).
if( WITH_EXAMPLES STREQUAL "yes" )
   add_subdirectory( examples )
endif( WITH_EXAMPLES STREQUAL "yes" )
if( WITH_TESTS STREQUAL "yes" )
if( ${WITH_TESTS} )
    add_subdirectory( tests )
endif( WITH_TESTS STREQUAL "yes" )
endif()
add_subdirectory( src )
add_subdirectory( share )

+7 −0
Original line number Diff line number Diff line
ADD_SUBDIRECTORY( TNL )

# Note that it is important to start building examples as soon as possible,
# because they take the longest time and other stuff can be pipelined before
# they are finished (at least with Ninja).
if( ${WITH_EXAMPLES} )
   add_subdirectory( Examples )
endif()

if( ${WITH_BENCHMARKS} )
   ADD_SUBDIRECTORY( Benchmarks )
endif()
Loading