summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.cmake.managedbuilder/templates/projecttemplates/HelloWorldCPPCMakeProject/src/CMakeLists.txt
blob: 04369596c90094f8b85c5af40f1cf146094d3f2b (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/*.cpp"
)

add_executable(
	$(projectName)

	${SOURCES}
)

TARGET_LINK_LIBRARIES(
	$(projectName)
)

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