-
Notifications
You must be signed in to change notification settings - Fork 65
/
CMakeLists.txt
40 lines (33 loc) · 1.48 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
project(gears)
# http://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/InstallationGuide/html/buildtools.html
find_package(Geant4 11.0 REQUIRED ui_all vis_all)
include(${Geant4_USE_FILE}) # auto configure includes & flags
# enable GDML if XercesC_INCLUDE_DIR is defined by Geant4
if(XercesC_INCLUDE_DIR)
add_definitions(-DhasGDML)
endif()
add_executable(gears gears.cc)
target_link_libraries(gears ${Geant4_LIBRARIES})
# put executable in the source directory where gears.sh locates
# https://stackoverflow.com/a/9994922/1801749
set_target_properties(gears PROPERTIES
RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_SOURCE_DIR})
# hide CMAKE_INSTALL_PREFIX from novice
mark_as_advanced(FORCE CMAKE_INSTALL_PREFIX X11_xcb_icccm_INCLUDE_PATH
X11_xcb_icccm_LIB X11_xcb_util_INCLUDE_PATH X11_xcb_util_LIB
X11_xcb_xfixes_INCLUDE_PATH X11_xcb_xfixes_LIB)
if(WIN32)
# remove Debug and other unnecessary configurations
# https://cmake.org/pipermail/cmake/2007-March/013081.html
set(CMAKE_CONFIGURATION_TYPES "Release" CACHE INTERNAL "")
# https://stackoverflow.com/a/37994396/1801749
set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT gears)
# automacially add \path\to\gears to user PATH environment variable
add_custom_command(TARGET gears POST_BUILD
COMMAND cmd /c ${CMAKE_CURRENT_SOURCE_DIR}/gears.bat)
else()
add_custom_target(setup ALL echo
COMMAND echo To install, please move gears to a desired folder.
COMMAND echo)
endif()