Skip to content

Commit 1a2d412

Browse files
committed
minor changes
1 parent cb16287 commit 1a2d412

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ include(CMakePackageConfigHelpers)
114114

115115
# Create a config file that handles dependencies
116116
configure_file(
117-
${CMAKE_CURRENT_SOURCE_DIR}/cmake/DevdatConfig.cmake.in
117+
${CMAKE_CURRENT_SOURCE_DIR}/cmake/devdatConfig.cmake.in
118118
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
119119
@ONLY
120120
)

examples/CMakeLists.txt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,4 @@ add_executable(devdat_examples
2121
)
2222

2323
# Link with devdat - all necessary include paths should come from this
24-
target_link_libraries(devdat_examples PRIVATE devdat::devdat)
25-
26-
# If using CUDA, you might need to specify compute capability
27-
set_target_properties(devdat_examples PROPERTIES
28-
CUDA_ARCHITECTURES "75" # Adjust based on your GPU
29-
)
24+
target_link_libraries(devdat_examples PRIVATE devdat::devdat)

tests/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ target_link_libraries(devdat_tests
1818
PRIVATE
1919
devdat
2020
Catch2::Catch2
21-
nlohmann_json::nlohmann_json
2221
)
2322

2423
include(${catch2_SOURCE_DIR}/contrib/Catch.cmake)

0 commit comments

Comments
 (0)