Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
CastagnaIT committed Oct 2, 2024
1 parent 3c985b8 commit 6aba7a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CompResources.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class ATTR_DLL_LOCAL CCompResources
* \brief Get the current screen info.
* \return The screen info.
*/
ScreenInfo GetScreenInfo() { return m_screenInfo.load(); }
ScreenInfo GetScreenInfo() const { return m_screenInfo.load(); }

/*!
* \brief Set the screen info.
Expand Down
2 changes: 1 addition & 1 deletion src/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ add_executable(${BINARY}
../utils/XMLUtils.cpp
)

target_link_libraries(${BINARY} PRIVATE ${BENTO4_LIBRARIES} ${PUGIXML_LIBRARIES} ${GTEST_LIBRARIES} Threads::Threads ${CMAKE_DL_LIBS})
target_link_libraries(${BINARY} PRIVATE ${BENTO4_LIBRARIES} ${PUGIXML_LIBRARIES} ${GTEST_LIBRARIES} Threads::Threads ${CMAKE_DL_LIBS} atomic)

set(TEST_DATA_DIR "${CMAKE_SOURCE_DIR}/src/test/manifests")
add_test(NAME manifest_tests COMMAND ${BINARY} "${TEST_DATA_DIR}")

0 comments on commit 6aba7a2

Please sign in to comment.