Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simc-file-input
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jlab
hallc
simulation
simc-file-input
Commits
c5fd72fd
Commit
c5fd72fd
authored
1 month ago
by
Sylvester Joosten
Browse files
Options
Downloads
Patches
Plain Diff
updated config to compile on contemporary linux machine
parent
77c85927
No related branches found
No related tags found
No related merge requests found
Pipeline
#119110
failed
1 month ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
CTP/CMakeLists.txt
+4
-0
4 additions, 0 deletions
CTP/CMakeLists.txt
with
5 additions
and
1 deletion
CMakeLists.txt
+
1
−
1
View file @
c5fd72fd
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
################################################################################
################################################################################
cmake_minimum_required
(
VERSION 3.8
)
cmake_minimum_required
(
VERSION 3.8
)
project
(
simc VERSION 1.0.0 LANGUAGES CXX
)
project
(
simc VERSION 1.0.0 LANGUAGES
C
CXX
Fortran
)
################################################################################
################################################################################
## CMAKE Settings
## CMAKE Settings
...
...
This diff is collapsed.
Click to expand it.
CTP/CMakeLists.txt
+
4
−
0
View file @
c5fd72fd
...
@@ -66,6 +66,7 @@ ADD_CUSTOM_COMMAND(
...
@@ -66,6 +66,7 @@ ADD_CUSTOM_COMMAND(
################################################################################
################################################################################
include_directories
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/include
)
include_directories
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/include
)
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
)
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
)
include_directories
(
SYSTEM /usr/include/tirpc
)
################################################################################
################################################################################
## Compile and Link
## Compile and Link
...
@@ -76,6 +77,7 @@ ${RPC_SVC_SOURCE} ${RPC_XDR_SOURCE} ${RPC_HEADER})
...
@@ -76,6 +77,7 @@ ${RPC_SVC_SOURCE} ${RPC_XDR_SOURCE} ${RPC_HEADER})
set_target_properties
(
${
LIBRARY
}
PROPERTIES
set_target_properties
(
${
LIBRARY
}
PROPERTIES
VERSION
${
PROJECT_VERSION
}
VERSION
${
PROJECT_VERSION
}
SOVERSION
${
PROJECT_VERSION_MAJOR
}
)
SOVERSION
${
PROJECT_VERSION_MAJOR
}
)
set_property
(
TARGET
${
LIBRARY
}
PROPERTY C_STANDARD 11
)
add_library
(
${
CLIENT_LIBRARY
}
STATIC
add_library
(
${
CLIENT_LIBRARY
}
STATIC
${
CLIENT_SOURCES
}
${
CLIENT_SOURCES
}
...
@@ -83,8 +85,10 @@ add_library(${CLIENT_LIBRARY} STATIC
...
@@ -83,8 +85,10 @@ add_library(${CLIENT_LIBRARY} STATIC
set_target_properties
(
${
CLIENT_LIBRARY
}
PROPERTIES
set_target_properties
(
${
CLIENT_LIBRARY
}
PROPERTIES
VERSION
${
PROJECT_VERSION
}
VERSION
${
PROJECT_VERSION
}
SOVERSION
${
PROJECT_VERSION_MAJOR
}
)
SOVERSION
${
PROJECT_VERSION_MAJOR
}
)
set_property
(
TARGET
${
CLIENT_LIBRARY
}
PROPERTY C_STANDARD 11
)
add_executable
(
${
PROGRAM
}
${
MAKEREG_SOURCES
}
)
add_executable
(
${
PROGRAM
}
${
MAKEREG_SOURCES
}
)
set_property
(
TARGET
${
PROGRAM
}
PROPERTY C_STANDARD 11
)
target_link_libraries
(
${
PROGRAM
}
target_link_libraries
(
${
PROGRAM
}
${
CLIENT_LIBRARY
}
${
LIBRARY
}
${
CLIENT_LIBRARY
}
${
LIBRARY
}
${
CLIENT_LIBRARY
}
${
LIBRARY
}
${
CLIENT_LIBRARY
}
${
LIBRARY
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment