Skip to content

Commit

Permalink
Merge pull request #69 from loriab/win_fixes
Browse files Browse the repository at this point in the history
windows dll fixes
  • Loading branch information
Daniel Smith authored Jan 11, 2021
2 parents 4f6b5dd + 7022c4e commit cd0e8d0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)

project(gau2grid
VERSION 2.0.5
VERSION 2.0.7
LANGUAGES C)
set(gau2grid_AUTHORS "Daniel G. A. Smith")
set(gau2grid_DESCRIPTION "Fast computation of a gaussian and its derivative on a grid")
Expand Down Expand Up @@ -136,7 +136,9 @@ if(${NATIVE_PYTHON_INSTALL_WITH_LIB} OR (NOT(${INSTALL_PYMOD} AND ${NATIVE_PYTHO
install(TARGETS gg
EXPORT "${PN}Targets"
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})

install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PN}Config.cmake
${CMAKE_CURRENT_BINARY_DIR}/${PN}ConfigVersion.cmake
Expand Down

0 comments on commit cd0e8d0

Please sign in to comment.