Guest User

CMakeLists.txt from my project

a guest
Nov 17th, 2021
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.21)
  2. project(wxhelloworld)
  3.  
  4. set(CMAKE_CXX_STANDARD 14)
  5.  
  6. find_package(wxWidgets REQUIRED COMPONENTS net core base)
  7. include(${wxWidgets_USE_FILE})
  8.  
  9. add_executable(wxhelloworld main.cpp)
  10. target_link_libraries(wxhelloworld ${wxWidgets_LIBRARIES})
Advertisement
Add Comment
Please, Sign In to add comment