a145980795
Construct paths relative to the Cuberite sources with PROJECT_SOURCE_DIR, instead of wherever the first CMakeLists.txt file happened to be with CMAKE_SOURCE_DIR. In Android's case, the latter was in a folder called android/ but that's not the root of the source tree, so any file path built off that root was wrong. This caused file-specific warnings exclusions to fail to apply.
35 lines
812 B
CMake
35 lines
812 B
CMake
include_directories(${PROJECT_SOURCE_DIR}/src/)
|
|
|
|
set (SHARED_SRCS
|
|
${PROJECT_SOURCE_DIR}/src/BoundingBox.cpp
|
|
${PROJECT_SOURCE_DIR}/src/OSSupport/StackTrace.cpp
|
|
${PROJECT_SOURCE_DIR}/src/OSSupport/WinStackWalker.cpp
|
|
)
|
|
|
|
set (SHARED_HDRS
|
|
${PROJECT_SOURCE_DIR}/src/BoundingBox.h
|
|
${PROJECT_SOURCE_DIR}/src/OSSupport/StackTrace.h
|
|
${PROJECT_SOURCE_DIR}/src/OSSupport/WinStackWalker.h
|
|
)
|
|
|
|
set (SRCS
|
|
BoundingBoxTest.cpp
|
|
)
|
|
|
|
|
|
source_group("Shared" FILES ${SHARED_SRCS} ${SHARED_HDRS})
|
|
source_group("Sources" FILES ${SRCS})
|
|
add_executable(BoundingBox-exe ${SRCS} ${SHARED_SRCS} ${SHARED_HDRS})
|
|
target_link_libraries(BoundingBox-exe fmt::fmt)
|
|
add_test(NAME BoundingBox-test COMMAND BoundingBox-exe)
|
|
|
|
|
|
|
|
|
|
|
|
# Put the projects into solution folders (MSVC):
|
|
set_target_properties(
|
|
BoundingBox-exe
|
|
PROPERTIES FOLDER Tests
|
|
)
|