summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 01bb82c4f433baf724f8f60fddb35568dde24410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)

MESSAGE("build nfc setting menu")

IF(TIZEN_MOBILE)
MESSAGE("profile : mobile")
ADD_SUBDIRECTORY(mobile)
ENDIF(TIZEN_MOBILE)

IF(TIZEN_WEARABLE)
MESSAGE("profile : wearable")
ADD_SUBDIRECTORY(wearable)
ENDIF(TIZEN_WEARABLE)

IF(TIZEN_COMMON)
MESSAGE("profile : common")
ADD_SUBDIRECTORY(common)
ENDIF(TIZEN_COMMON)