-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I had to upgrade these to compile with C++ 17 to match with LavaTool.…
… BUT LAVA TOOL IS DONE WITH LLVM 11! I have to do more upgrades to FBI
- Loading branch information
1 parent
9f7d4d6
commit 5827568
Showing
2 changed files
with
2 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
cmake_minimum_required(VERSION 3.15) | ||
|
||
#add_library (lavaDB_x32 STATIC lavaDB.cpp) | ||
#set_property(TARGET lavaDB_x32 PROPERTY CXX_STANDARD 11) | ||
#set_target_properties(lavaDB_x32 PROPERTIES COMPILE_FLAGS "-m32" LINK_FLAGS "-m32") | ||
|
||
add_library (lavaDB_x64 STATIC lavaDB.cpp) | ||
set_property(TARGET lavaDB_x64 PROPERTY CXX_STANDARD 11) | ||
target_compile_options(lavaDB_x64 PRIVATE -D_GLIBCXX_USE_CXX11_ABI=0) | ||
set_property(TARGET lavaDB_x64 PROPERTY CXX_STANDARD 17) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters