Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
FreemudAPI
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhenfei.zhang
FreemudAPI
Commits
0d9668ae
Commit
0d9668ae
authored
Jun 18, 2019
by
刘帅
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CMake支持
parent
9ebb853d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
3 deletions
+32
-3
.gitignore
+3
-3
FreemudAPI/CMakeLists.txt
+29
-0
No files found.
.gitignore
View file @
0d9668ae
...
...
@@ -6,5 +6,5 @@ ipch/
*.user
*.filters
*.db
*.txt
*.opensdf
\ No newline at end of file
*.opensdf
build/
\ No newline at end of file
FreemudAPI/CMakeLists.txt
0 → 100644
View file @
0d9668ae
#指定cmake版本
cmake_minimum_required
(
VERSION 3.2
)
#指定项目的名称,一般和项目的文件夹名称对应
PROJECT
(
FreemudAPI
)
SET
(
SRC_LIST FreemudAPI.cpp
FreemudAPI.rc
resource.h
socketHeader.h
send.h
recv.h
fm_tool.h
fmerror.h
stdafx.cpp
FreemudAPI.def
dllmain.cpp
targetver.h
)
#头文件目录
INCLUDE_DIRECTORIES
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/
)
message
(
${
CMAKE_CURRENT_SOURCE_DIR
}
)
ADD_LIBRARY
(
FreemudAPI SHARED
${
SRC_LIST
}
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment