Jump to content

Recommended Posts

Posted

What is the purpose of using cmake if you already have a Visual Studio project?

My job is to make tools you love, with the features you want, and performance you can't live without.

Posted

Apparently CLion does work with the MSVC compiler, but you would have to manually create a cmake build script, which is extremely complicated.

My job is to make tools you love, with the features you want, and performance you can't live without.

Posted

hey guys,

got it to work in CLion with this (debug):

project(ultra00)

include_directories("C:/Program Files/Ultra App Kit/Include")
include_directories("C:/Program Files/Ultra App Kit/Include/Libraries/FreeType/include")
include_directories("C:/Program Files/Ultra App Kit/Include/Libraries/sol3/include")

set(CMAKE_CXX_STANDARD 17)

add_executable(ultra00 ultra00.cpp)

add_definitions(-MTd)
add_compile_definitions(ultra00 _ULTRA_APPKIT)
add_compile_definitions(ultra00 _DEBUG)
target_link_libraries(ultra00 "C:/Program Files/Ultra App Kit/Libs/Win64/App Kit_d.lib")
 

will keep you guys posted if i figure out something better!

 

  • Like 1
  • Thanks 1
Posted
2 hours ago, Erwin Saavedra said:

include_directories("C:/Program Files/Ultra App Kit/Include/Libraries/FreeType/include")
include_directories("C:/Program Files/Ultra App Kit/Include/Libraries/sol3/include")

You don't need these two include directories.

My job is to make tools you love, with the features you want, and performance you can't live without.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...