-
Notifications
You must be signed in to change notification settings - Fork 314
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import Geant4 11.0.0.beta source tree
- Loading branch information
Showing
4,274 changed files
with
198,882 additions
and
228,769 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Locate Pythia8 library | ||
# in a directory defined via PYTHIA8 environment variable | ||
# | ||
# Defines: | ||
# PYTHIA8_FOUND | ||
# PYTHIA8_LIBRARIES | ||
# PYTHIA8_INCLUDES | ||
|
||
find_library(PYTHIA8_LIBRARY NAMES pythia8 | ||
HINTS $ENV{PYTHIA8} $ENV{PYTHIA8}/lib) | ||
|
||
set(PYTHIA8_LIBRARIES ${PYTHIA8_LIBRARY}) | ||
#message(STATUS PYTHIA8_LIBRARIES ${PYTHIA8_LIBRARIES} ) | ||
|
||
find_path( PYTHIA8_INCLUDES Pythia8/Pythia.h | ||
HINTS $ENV{PYTHIA8} $ENV{PYTHIA8}/include $ENV{PYTHIA8}/include/Pythia8 ) | ||
set(PYTHIA8_INCLUDES ${PYTHIA8_INCLUDES}) | ||
|
||
# handle the QUIETLY and REQUIRED arguments and set PYTHIA8_FOUND to TRUE if | ||
# all listed variables are TRUE | ||
INCLUDE(FindPackageHandleStandardArgs) | ||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Pythia8 DEFAULT_MSG PYTHIA8_LIBRARIES) | ||
|
||
mark_as_advanced(PYTHIA8_FOUND PYTHIA8_LIBRARIES PYTHIA8_INCLUDES) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.