cmake_minimum_required(VERSION 3.2)
project(protocol-helper)

setUpProject(executable-bundle)

if (GALAXY_ENABLE_UNITY_BUILD)
	# Disable unity build until Obj-C++ projects can be verified.
	set_property(TARGET ${PROJECT_NAME} PROPERTY UNITY_BUILD OFF)
endif (GALAXY_ENABLE_UNITY_BUILD)

set_target_properties(${PROJECT_NAME}
	PROPERTIES
	OUTPUT_NAME "GOG Galaxy Protocol Helper"
)

target_link_libraries(${PROJECT_NAME} ${CocoaLib})
