16 lines
745 B
CMake
16 lines
745 B
CMake
#
|
|
#####################################################################################
|
|
### 1) Definitions (required for tsp target)
|
|
######################################################################################
|
|
|
|
SET(TSP_EXAMPLE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/examples/tsp CACHE PATH "TSP example directory")
|
|
|
|
######################################################################################
|
|
|
|
######################################################################################
|
|
### 2) Where must cmake go now ?
|
|
######################################################################################
|
|
|
|
SUBDIRS(examples Lesson1 Lesson2 Lesson3)
|
|
|
|
######################################################################################
|