summaryrefslogtreecommitdiff
path: root/example/CMakeLists.txt
blob: a895b5d6140ed3a5d7e91652475b2d9cb04e7fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
project(pke_example VERSION 0.0)

set(PKE_EDITOR_SOURCE_FILES
	# example_export.h
	example.hpp
	example.cpp
)

add_library(pke_example
	${PKE_EDITOR_SOURCE_FILES}
)

target_link_libraries(pke_example PUBLIC pke)
target_include_directories(pke_example PUBLIC pke)