Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MemoryProcessing
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
数学の武士
MemoryProcessing
Commits
21eb02e0
Commit
21eb02e0
authored
1 year ago
by
数学の武士
Browse files
Options
Downloads
Patches
Plain Diff
.
parent
565d53ec
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+10
-1
10 additions, 1 deletion
CMakeLists.txt
with
10 additions
and
1 deletion
CMakeLists.txt
+
10
−
1
View file @
21eb02e0
...
@@ -17,10 +17,19 @@ endif(INCLUDE_CUDA)
...
@@ -17,10 +17,19 @@ endif(INCLUDE_CUDA)
set
(
SOURCES_CXX
set
(
SOURCES_CXX
src/MemoryProcessing.cpp
src/MemoryProcessing.cpp
)
)
set
(
HEADERS_CXX
include/MemoryProcessing.h
)
if
(
INCLUDE_CUDA
)
if
(
INCLUDE_CUDA
)
set
(
SOURCES_CU
set
(
SOURCES_CU
src/MemoryProcessing.cu
src/MemoryProcessing.cu
)
)
set
(
HEADERS_CU
include/MemoryProcessing.cuh
)
endif
(
INCLUDE_CUDA
)
endif
(
INCLUDE_CUDA
)
add_library
(
memproc STATIC
${
SOURCES_CU
}
${
SOURCES_CXX
}
)
set
(
SOURCES
${
SOURCES_CU
}
${
SOURCES_CXX
}
)
\ No newline at end of file
set
(
HEADERS
${
HEADERS_CU
}
${
HEADERS_CXX
}
)
add_library
(
memproc STATIC
${
HEADERS
}
${
SOURCES
}
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment