Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CMake install #104

Merged
merged 2 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.4.1 Release notes (2022-10-19)
=============================================================

### Fixed
* Realm C++ would not install correctly when using CMake.

----------------------------------------------

0.4.0 Release notes (2022-10-17)
=============================================================

Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ add_subdirectory(cpprealm/internal/bridge/generator)
include(GetVersion)
# Configure source code to use right version number
configure_file(${PROJECT_SOURCE_DIR}/src/cpprealm/internal/version_numbers.hpp.in ${PROJECT_SOURCE_DIR}/src/cpprealm/internal/version_numbers.hpp)
install(FILES version_numbers.hpp
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/cpprealm
install(FILES ${PROJECT_SOURCE_DIR}/src/cpprealm/internal/version_numbers.hpp
leemaguire marked this conversation as resolved.
Show resolved Hide resolved
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/cpprealm/internal
COMPONENT devel)

add_custom_command(
Expand Down
Loading