summaryrefslogtreecommitdiff
path: root/universe/CMakeLists.txt
blob: fab238b0203ec48a707835c6b2875fc2cc384d8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
project(universe)
add_library(
	${PROJECT_NAME}
	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
)