Skip to content

Commit 0490cf0

Browse files
committed
Fix bug where resource files weren't being linked on Linux
1 parent 5cccb06 commit 0490cf0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## Unreleased
9+
10+
### Fixed
11+
- Fixed build configuration bug where resources were not being linked on Linux
12+
813
## 2.3.0 - 2019-07-13
914

1015
### Added

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ set(RESOURCE_FILES resources/haloray.qrc resources/haloray.rc)
3232
IF (WIN32)
3333
add_executable(haloray WIN32 ${HALORAY_SOURCES} ${RESOURCE_FILES})
3434
ELSE()
35-
add_executable(haloray ${HALORAY_SOURCES})
35+
add_executable(haloray ${HALORAY_SOURCES} ${RESOURCE_FILES})
3636
ENDIF()
3737

3838
target_link_libraries(haloray Qt5::Core Qt5::Widgets Qt5::Gui)

0 commit comments

Comments
 (0)