summaryrefslogtreecommitdiff
path: root/universe/CMakeLists.txt
blob: 1728f1c68db785af67ccb40607a8382e4a6206d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
project(universe)
add_library(
	${PROJECT_NAME} STATIC
	src/JsonRepository.cpp
	src/NotFound.cpp
	src/TurretType.cpp
	src/universe.cpp
)
target_include_directories(
	${PROJECT_NAME}
	PUBLIC include
)
add_resources(
	universe_resources FILES
	resources/universe/ship_types.json
	resources/universe/turret_types.json
)