File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ files can be used to build the widget as follows:
227
227
mkdir buildmvp
228
228
cd buildmvp
229
229
cmake ..
230
- cmake --buildmvp .
230
+ cmake --build .
231
231
232
232
The example widget can then be opened with:
233
233
Original file line number Diff line number Diff line change @@ -16,6 +16,12 @@ add_executable(launch
16
16
${MOC_FILES}
17
17
)
18
18
19
+ # Link with the Release version of the standard library. This is required because
20
+ # Conda does not provide packages with Debug symbols.
21
+ if(WIN32)
22
+ set_property(TARGET launch PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreadedDLL")
23
+ endif()
24
+
19
25
target_link_libraries(launch
20
26
Qt5::Core
21
27
Qt5::Gui
Original file line number Diff line number Diff line change 11
11
#include <QApplication>
12
12
13
13
14
- int main(int argc, char *argv[]){
14
+ int main(int argc, char *argv[]) {
15
15
QApplication app(argc, argv);
16
16
17
- //{
18
- // QString test = "3";
19
- // std::string blah = test.toStdString();
20
- //}
21
17
auto model = std::make_unique<Model>();
22
18
auto view = new View();
23
19
auto presenter = std::make_unique<Presenter>(std::move(model), view);
You can’t perform that action at this time.
0 commit comments