Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dssp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
dssp
Commits
f192ea59
Unverified
Commit
f192ea59
authored
Oct 01, 2021
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed makefile
parent
0dba28b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
CMakeLists.txt
+4
-4
changelog
+3
-0
No files found.
CMakeLists.txt
View file @
f192ea59
...
...
@@ -150,6 +150,7 @@ if(NOT BUILD_SHARED_LIBS)
endif
()
find_package
(
cifpp 2.0.0 REQUIRED
)
find_package
(
Boost COMPONENTS date_time
)
if
(
USE_RSRC
)
add_custom_command
(
OUTPUT mkdssp_rsrc.obj
...
...
@@ -166,7 +167,7 @@ add_executable(mkdssp
${
DSSP_RESOURCE
}
)
target_include_directories
(
mkdssp PRIVATE cifpp::cifpp
${
CMAKE_SOURCE_DIR
}
/include
${
cifpp_INCLUDE_DIRS
}
${
Boost_INCLUDE_DIRS
}
${
CMAKE_BINARY_DIR
}
)
target_link_libraries
(
mkdssp PRIVATE cifpp::cifpp
${
CMAKE_THREAD_LIBS_INIT
}
)
target_link_libraries
(
mkdssp PRIVATE cifpp::cifpp
Boost::date_time
${
CMAKE_THREAD_LIBS_INIT
}
)
install
(
TARGETS
${
PROJECT_NAME
}
RUNTIME DESTINATION
${
BIN_INSTALL_DIR
}
...
...
@@ -193,7 +194,7 @@ target_include_directories(unit-test PRIVATE
${
CMAKE_CURRENT_SOURCE_DIR
}
/include
)
target_link_libraries
(
unit-test Threads::Threads cifpp::cifpp
)
target_link_libraries
(
unit-test Threads::Threads cifpp::cifpp
Boost::date_time
)
if
(
MSVC
)
# Specify unwind semantics so that MSVC knowns how to handle exceptions
...
...
@@ -217,4 +218,4 @@ if(DSSP_BUILD_INSTALLER)
# configuration done, include CPack
include
(
CPack
)
endif
()
\ No newline at end of file
endif
()
changelog
View file @
f192ea59
Version 4.0.3
- Fixed makefile
Version 4.0.2
- Dropped support for reading bzip2 files directly. gzipped is still supported
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment