summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.cmake.managedbuilder/templates/projecttemplates/HelloWorldCCMakeProject/src/CMakeLists.txt
blob: e6482a7c1dcb59dbd8891e827878eebf7384ce64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
cmake_minimum_required (VERSION 2.8.1)

######## Project settings ########
PROJECT($(projectName))
SET(LICENSE "TBD")

######## Build and include settings ########
include_directories(
	inc
)

link_directories(
	${LINK_DIRECTORIES}
)


file(GLOB SOURCES
	"src/*.c"
)

add_executable(
	$(projectName)

	${SOURCES}
)

TARGET_LINK_LIBRARIES(
	$(projectName)
)

######## Install targets ########
INSTALL(TARGETS $(projectName)
	RUNTIME DESTINATION usr/bin
)