Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ECM
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
Container 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
ECM
ECM
Commits
6f72f4bb
Commit
6f72f4bb
authored
1 year ago
by
Franck Galpin
Browse files
Options
Downloads
Patches
Plain Diff
add inl files in the project to ease editing
parent
baff74c3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!611
add inl files in the project to ease editing
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/Lib/CommonLib/CMakeLists.txt
+2
-1
2 additions, 1 deletion
source/Lib/CommonLib/CMakeLists.txt
with
2 additions
and
1 deletion
source/Lib/CommonLib/CMakeLists.txt
+
2
−
1
View file @
6f72f4bb
...
...
@@ -11,6 +11,7 @@ file( GLOB BASE_SRC_FILES "*.cpp" )
# get include files
file
(
GLOB BASE_INC_FILES
"*.h"
)
file
(
GLOB BASE_INL_FILES
"*.inl"
)
# get x86 source files
file
(
GLOB X86_SRC_FILES
"x86/*.cpp"
)
...
...
@@ -41,7 +42,7 @@ file( GLOB MD5_INC_FILES "../libmd5/*.h" )
set
(
SRC_FILES
${
BASE_SRC_FILES
}
${
X86_SRC_FILES
}
${
SSE41_SRC_FILES
}
${
SSE42_SRC_FILES
}
${
AVX_SRC_FILES
}
${
AVX2_SRC_FILES
}
${
MD5_SRC_FILES
}
)
# get all include files
set
(
INC_FILES
${
BASE_INC_FILES
}
${
X86_INC_FILES
}
${
MD5_INC_FILES
}
)
set
(
INC_FILES
${
BASE_INC_FILES
}
${
BASE_INL_FILES
}
${
X86_INC_FILES
}
${
MD5_INC_FILES
}
)
# library
...
...
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