You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
471 B

# Setup output paths for jupiter and Bot
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_SHARED_LIBRARY_PREFIX)
# Add primary components (Jupiter, Bot, jessilib)
add_subdirectory(Jupiter)
add_subdirectory(jessilib)
add_subdirectory(Bot)
# Setup output paths for plugins
add_subdirectory(Plugins)
# Propagate JUPITER_PLUGINS upwards
set(JUPITER_PLUGINS "${JUPITER_PLUGINS}" PARENT_SCOPE)