Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pappsomspp
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
Container Registry
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
⚠
INSTANCE de PREPROD
⚠
Les données peuvent être supprimées à tout moment.
Show more breadcrumbs
PAPPSO
pappsomspp
Commits
6d085468
Commit
6d085468
authored
5 years ago
by
Langella Olivier
Browse files
Options
Downloads
Patches
Plain Diff
WIP: win64 compilation problem
parent
1bc373aa
Branches
win64
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
win64/Toolchain-mingw64.cmake
+18
-0
18 additions, 0 deletions
win64/Toolchain-mingw64.cmake
with
18 additions
and
0 deletions
win64/Toolchain-mingw64.cmake
+
18
−
0
View file @
6d085468
...
...
@@ -11,6 +11,11 @@ SET (USEQT5 1)
#set (MINGW 1)
set
(
MAKE_TEST 0
)
cmake_policy
(
SET CMP0020 NEW
)
cmake_policy
(
SET CMP0028 NEW
)
cmake_policy
(
SET CMP0053 NEW
)
set
(
CMAKE_CXX_COMPILER
"/mingw64/bin/g++.exe"
)
#set(CMAKE_AUTOMOC ON)
#set(CMAKE_INCLUDE_CURRENT_DIR ON)
...
...
@@ -32,10 +37,23 @@ set(ZLIB_LIBRARIES "/mingw64/lib/libz.a")
set
(
ALGLIB_FOUND 1
)
set
(
ALGLIB_INCLUDE_DIRS
"/home/polipo/devel/alglib-3.16/src"
)
set
(
ALGLIB_LIB
"/home/polipo/devel/alglib-3.16/build/libalglib.so"
)
if
(
NOT TARGET ALGLIB::ALGLIB
)
add_library
(
ALGLIB::ALGLIB UNKNOWN IMPORTED
)
set_target_properties
(
ALGLIB::ALGLIB PROPERTIES
IMPORTED_LOCATION
"
${
ALGLIB_LIBRARY
}
"
INTERFACE_INCLUDE_DIRECTORIES
"
${
ALGLIB_INCLUDE_DIR
}
"
)
endif
()
set
(
Pwiz_FOUND 1
)
set
(
Pwiz_INCLUDE_DIR
"/home/polipo/devel/pwiz"
)
set
(
Pwiz_LIBRARY
"/home/polipo/devel/pwiz/libpwiz.a"
)
if
(
NOT TARGET Pwiz::Pwiz
)
add_library
(
Pwiz::Pwiz UNKNOWN IMPORTED
)
set_target_properties
(
Pwiz::Pwiz PROPERTIES
IMPORTED_LOCATION
"
${
Pwiz_LIBRARY
}
"
INTERFACE_INCLUDE_DIRECTORIES
"
${
Pwiz_INCLUDE_DIR
}
"
)
endif
()
set
(
Boost_FOUND 1
)
set
(
Boost_INCLUDE_DIRS
"/home/polipo/devel/boost/boost_1_56_0"
)
...
...
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